composer.lock 367 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459
  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": "f9bb804b87de132a939ed87ee1aa87e0",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.0.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "23f469e81c65e2fb7fc7bce371fbdc363fe32adf"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/23f469e81c65e2fb7fc7bce371fbdc363fe32adf",
  20. "reference": "23f469e81c65e2fb7fc7bce371fbdc363fe32adf",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.0",
  25. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  26. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^6|^7|^8|^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.0-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "time": "2020-05-31T07:17:05+00:00"
  60. },
  61. {
  62. "name": "brick/math",
  63. "version": "0.9.1",
  64. "source": {
  65. "type": "git",
  66. "url": "https://github.com/brick/math.git",
  67. "reference": "283a40c901101e66de7061bd359252c013dcc43c"
  68. },
  69. "dist": {
  70. "type": "zip",
  71. "url": "https://api.github.com/repos/brick/math/zipball/283a40c901101e66de7061bd359252c013dcc43c",
  72. "reference": "283a40c901101e66de7061bd359252c013dcc43c",
  73. "shasum": ""
  74. },
  75. "require": {
  76. "ext-json": "*",
  77. "php": "^7.1|^8.0"
  78. },
  79. "require-dev": {
  80. "php-coveralls/php-coveralls": "^2.2",
  81. "phpunit/phpunit": "^7.5.15|^8.5",
  82. "vimeo/psalm": "^3.5"
  83. },
  84. "type": "library",
  85. "autoload": {
  86. "psr-4": {
  87. "Brick\\Math\\": "src/"
  88. }
  89. },
  90. "notification-url": "https://packagist.org/downloads/",
  91. "license": [
  92. "MIT"
  93. ],
  94. "description": "Arbitrary-precision arithmetic library",
  95. "keywords": [
  96. "Arbitrary-precision",
  97. "BigInteger",
  98. "BigRational",
  99. "arithmetic",
  100. "bigdecimal",
  101. "bignum",
  102. "brick",
  103. "math"
  104. ],
  105. "funding": [
  106. {
  107. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  108. "type": "tidelift"
  109. }
  110. ],
  111. "time": "2020-08-18T23:57:15+00:00"
  112. },
  113. {
  114. "name": "composer/ca-bundle",
  115. "version": "1.2.8",
  116. "source": {
  117. "type": "git",
  118. "url": "https://github.com/composer/ca-bundle.git",
  119. "reference": "8a7ecad675253e4654ea05505233285377405215"
  120. },
  121. "dist": {
  122. "type": "zip",
  123. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/8a7ecad675253e4654ea05505233285377405215",
  124. "reference": "8a7ecad675253e4654ea05505233285377405215",
  125. "shasum": ""
  126. },
  127. "require": {
  128. "ext-openssl": "*",
  129. "ext-pcre": "*",
  130. "php": "^5.3.2 || ^7.0 || ^8.0"
  131. },
  132. "require-dev": {
  133. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8",
  134. "psr/log": "^1.0",
  135. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0"
  136. },
  137. "type": "library",
  138. "extra": {
  139. "branch-alias": {
  140. "dev-master": "1.x-dev"
  141. }
  142. },
  143. "autoload": {
  144. "psr-4": {
  145. "Composer\\CaBundle\\": "src"
  146. }
  147. },
  148. "notification-url": "https://packagist.org/downloads/",
  149. "license": [
  150. "MIT"
  151. ],
  152. "authors": [
  153. {
  154. "name": "Jordi Boggiano",
  155. "email": "j.boggiano@seld.be",
  156. "homepage": "http://seld.be"
  157. }
  158. ],
  159. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  160. "keywords": [
  161. "cabundle",
  162. "cacert",
  163. "certificate",
  164. "ssl",
  165. "tls"
  166. ],
  167. "funding": [
  168. {
  169. "url": "https://packagist.com",
  170. "type": "custom"
  171. },
  172. {
  173. "url": "https://github.com/composer",
  174. "type": "github"
  175. },
  176. {
  177. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  178. "type": "tidelift"
  179. }
  180. ],
  181. "time": "2020-08-23T12:54:47+00:00"
  182. },
  183. {
  184. "name": "dnoegel/php-xdg-base-dir",
  185. "version": "v0.1.1",
  186. "source": {
  187. "type": "git",
  188. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  189. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  190. },
  191. "dist": {
  192. "type": "zip",
  193. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  194. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  195. "shasum": ""
  196. },
  197. "require": {
  198. "php": ">=5.3.2"
  199. },
  200. "require-dev": {
  201. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  202. },
  203. "type": "library",
  204. "autoload": {
  205. "psr-4": {
  206. "XdgBaseDir\\": "src/"
  207. }
  208. },
  209. "notification-url": "https://packagist.org/downloads/",
  210. "license": [
  211. "MIT"
  212. ],
  213. "description": "implementation of xdg base directory specification for php",
  214. "time": "2019-12-04T15:06:13+00:00"
  215. },
  216. {
  217. "name": "doctrine/inflector",
  218. "version": "2.0.3",
  219. "source": {
  220. "type": "git",
  221. "url": "https://github.com/doctrine/inflector.git",
  222. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  223. },
  224. "dist": {
  225. "type": "zip",
  226. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  227. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  228. "shasum": ""
  229. },
  230. "require": {
  231. "php": "^7.2 || ^8.0"
  232. },
  233. "require-dev": {
  234. "doctrine/coding-standard": "^7.0",
  235. "phpstan/phpstan": "^0.11",
  236. "phpstan/phpstan-phpunit": "^0.11",
  237. "phpstan/phpstan-strict-rules": "^0.11",
  238. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  239. },
  240. "type": "library",
  241. "extra": {
  242. "branch-alias": {
  243. "dev-master": "2.0.x-dev"
  244. }
  245. },
  246. "autoload": {
  247. "psr-4": {
  248. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  249. }
  250. },
  251. "notification-url": "https://packagist.org/downloads/",
  252. "license": [
  253. "MIT"
  254. ],
  255. "authors": [
  256. {
  257. "name": "Guilherme Blanco",
  258. "email": "guilhermeblanco@gmail.com"
  259. },
  260. {
  261. "name": "Roman Borschel",
  262. "email": "roman@code-factory.org"
  263. },
  264. {
  265. "name": "Benjamin Eberlei",
  266. "email": "kontakt@beberlei.de"
  267. },
  268. {
  269. "name": "Jonathan Wage",
  270. "email": "jonwage@gmail.com"
  271. },
  272. {
  273. "name": "Johannes Schmitt",
  274. "email": "schmittjoh@gmail.com"
  275. }
  276. ],
  277. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  278. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  279. "keywords": [
  280. "inflection",
  281. "inflector",
  282. "lowercase",
  283. "manipulation",
  284. "php",
  285. "plural",
  286. "singular",
  287. "strings",
  288. "uppercase",
  289. "words"
  290. ],
  291. "funding": [
  292. {
  293. "url": "https://www.doctrine-project.org/sponsorship.html",
  294. "type": "custom"
  295. },
  296. {
  297. "url": "https://www.patreon.com/phpdoctrine",
  298. "type": "patreon"
  299. },
  300. {
  301. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  302. "type": "tidelift"
  303. }
  304. ],
  305. "time": "2020-05-29T15:13:26+00:00"
  306. },
  307. {
  308. "name": "doctrine/lexer",
  309. "version": "1.2.1",
  310. "source": {
  311. "type": "git",
  312. "url": "https://github.com/doctrine/lexer.git",
  313. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  314. },
  315. "dist": {
  316. "type": "zip",
  317. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  318. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  319. "shasum": ""
  320. },
  321. "require": {
  322. "php": "^7.2 || ^8.0"
  323. },
  324. "require-dev": {
  325. "doctrine/coding-standard": "^6.0",
  326. "phpstan/phpstan": "^0.11.8",
  327. "phpunit/phpunit": "^8.2"
  328. },
  329. "type": "library",
  330. "extra": {
  331. "branch-alias": {
  332. "dev-master": "1.2.x-dev"
  333. }
  334. },
  335. "autoload": {
  336. "psr-4": {
  337. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  338. }
  339. },
  340. "notification-url": "https://packagist.org/downloads/",
  341. "license": [
  342. "MIT"
  343. ],
  344. "authors": [
  345. {
  346. "name": "Guilherme Blanco",
  347. "email": "guilhermeblanco@gmail.com"
  348. },
  349. {
  350. "name": "Roman Borschel",
  351. "email": "roman@code-factory.org"
  352. },
  353. {
  354. "name": "Johannes Schmitt",
  355. "email": "schmittjoh@gmail.com"
  356. }
  357. ],
  358. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  359. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  360. "keywords": [
  361. "annotations",
  362. "docblock",
  363. "lexer",
  364. "parser",
  365. "php"
  366. ],
  367. "funding": [
  368. {
  369. "url": "https://www.doctrine-project.org/sponsorship.html",
  370. "type": "custom"
  371. },
  372. {
  373. "url": "https://www.patreon.com/phpdoctrine",
  374. "type": "patreon"
  375. },
  376. {
  377. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  378. "type": "tidelift"
  379. }
  380. ],
  381. "time": "2020-05-25T17:44:05+00:00"
  382. },
  383. {
  384. "name": "dragonmantank/cron-expression",
  385. "version": "v2.3.0",
  386. "source": {
  387. "type": "git",
  388. "url": "https://github.com/dragonmantank/cron-expression.git",
  389. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27"
  390. },
  391. "dist": {
  392. "type": "zip",
  393. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  394. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  395. "shasum": ""
  396. },
  397. "require": {
  398. "php": "^7.0"
  399. },
  400. "require-dev": {
  401. "phpunit/phpunit": "^6.4|^7.0"
  402. },
  403. "type": "library",
  404. "extra": {
  405. "branch-alias": {
  406. "dev-master": "2.3-dev"
  407. }
  408. },
  409. "autoload": {
  410. "psr-4": {
  411. "Cron\\": "src/Cron/"
  412. }
  413. },
  414. "notification-url": "https://packagist.org/downloads/",
  415. "license": [
  416. "MIT"
  417. ],
  418. "authors": [
  419. {
  420. "name": "Michael Dowling",
  421. "email": "mtdowling@gmail.com",
  422. "homepage": "https://github.com/mtdowling"
  423. },
  424. {
  425. "name": "Chris Tankersley",
  426. "email": "chris@ctankersley.com",
  427. "homepage": "https://github.com/dragonmantank"
  428. }
  429. ],
  430. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  431. "keywords": [
  432. "cron",
  433. "schedule"
  434. ],
  435. "time": "2019-03-31T00:38:28+00:00"
  436. },
  437. {
  438. "name": "egulias/email-validator",
  439. "version": "2.1.22",
  440. "source": {
  441. "type": "git",
  442. "url": "https://github.com/egulias/EmailValidator.git",
  443. "reference": "68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5"
  444. },
  445. "dist": {
  446. "type": "zip",
  447. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5",
  448. "reference": "68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5",
  449. "shasum": ""
  450. },
  451. "require": {
  452. "doctrine/lexer": "^1.0.1",
  453. "php": ">=5.5",
  454. "symfony/polyfill-intl-idn": "^1.10"
  455. },
  456. "require-dev": {
  457. "dominicsayers/isemail": "^3.0.7",
  458. "phpunit/phpunit": "^4.8.36|^7.5.15",
  459. "satooshi/php-coveralls": "^1.0.1"
  460. },
  461. "suggest": {
  462. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  463. },
  464. "type": "library",
  465. "extra": {
  466. "branch-alias": {
  467. "dev-master": "2.1.x-dev"
  468. }
  469. },
  470. "autoload": {
  471. "psr-4": {
  472. "Egulias\\EmailValidator\\": "src"
  473. }
  474. },
  475. "notification-url": "https://packagist.org/downloads/",
  476. "license": [
  477. "MIT"
  478. ],
  479. "authors": [
  480. {
  481. "name": "Eduardo Gulias Davis"
  482. }
  483. ],
  484. "description": "A library for validating emails against several RFCs",
  485. "homepage": "https://github.com/egulias/EmailValidator",
  486. "keywords": [
  487. "email",
  488. "emailvalidation",
  489. "emailvalidator",
  490. "validation",
  491. "validator"
  492. ],
  493. "time": "2020-09-26T15:48:38+00:00"
  494. },
  495. {
  496. "name": "ezyang/htmlpurifier",
  497. "version": "v4.13.0",
  498. "source": {
  499. "type": "git",
  500. "url": "https://github.com/ezyang/htmlpurifier.git",
  501. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  502. },
  503. "dist": {
  504. "type": "zip",
  505. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  506. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  507. "shasum": ""
  508. },
  509. "require": {
  510. "php": ">=5.2"
  511. },
  512. "require-dev": {
  513. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  514. },
  515. "type": "library",
  516. "autoload": {
  517. "psr-0": {
  518. "HTMLPurifier": "library/"
  519. },
  520. "files": [
  521. "library/HTMLPurifier.composer.php"
  522. ],
  523. "exclude-from-classmap": [
  524. "/library/HTMLPurifier/Language/"
  525. ]
  526. },
  527. "notification-url": "https://packagist.org/downloads/",
  528. "license": [
  529. "LGPL-2.1-or-later"
  530. ],
  531. "authors": [
  532. {
  533. "name": "Edward Z. Yang",
  534. "email": "admin@htmlpurifier.org",
  535. "homepage": "http://ezyang.com"
  536. }
  537. ],
  538. "description": "Standards compliant HTML filter written in PHP",
  539. "homepage": "http://htmlpurifier.org/",
  540. "keywords": [
  541. "html"
  542. ],
  543. "time": "2020-06-29T00:56:53+00:00"
  544. },
  545. {
  546. "name": "fideloper/proxy",
  547. "version": "4.4.0",
  548. "source": {
  549. "type": "git",
  550. "url": "https://github.com/fideloper/TrustedProxy.git",
  551. "reference": "9beebf48a1c344ed67c1d36bb1b8709db7c3c1a8"
  552. },
  553. "dist": {
  554. "type": "zip",
  555. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/9beebf48a1c344ed67c1d36bb1b8709db7c3c1a8",
  556. "reference": "9beebf48a1c344ed67c1d36bb1b8709db7c3c1a8",
  557. "shasum": ""
  558. },
  559. "require": {
  560. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0",
  561. "php": ">=5.4.0"
  562. },
  563. "require-dev": {
  564. "illuminate/http": "^5.0|^6.0|^7.0|^8.0",
  565. "mockery/mockery": "^1.0",
  566. "phpunit/phpunit": "^6.0"
  567. },
  568. "type": "library",
  569. "extra": {
  570. "laravel": {
  571. "providers": [
  572. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  573. ]
  574. }
  575. },
  576. "autoload": {
  577. "psr-4": {
  578. "Fideloper\\Proxy\\": "src/"
  579. }
  580. },
  581. "notification-url": "https://packagist.org/downloads/",
  582. "license": [
  583. "MIT"
  584. ],
  585. "authors": [
  586. {
  587. "name": "Chris Fidao",
  588. "email": "fideloper@gmail.com"
  589. }
  590. ],
  591. "description": "Set trusted proxies for Laravel",
  592. "keywords": [
  593. "load balancing",
  594. "proxy",
  595. "trusted proxy"
  596. ],
  597. "time": "2020-06-23T01:36:47+00:00"
  598. },
  599. {
  600. "name": "fruitcake/laravel-cors",
  601. "version": "v2.0.2",
  602. "source": {
  603. "type": "git",
  604. "url": "https://github.com/fruitcake/laravel-cors.git",
  605. "reference": "4b19bfc3bd422948af37a42a62fad7f49025894a"
  606. },
  607. "dist": {
  608. "type": "zip",
  609. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/4b19bfc3bd422948af37a42a62fad7f49025894a",
  610. "reference": "4b19bfc3bd422948af37a42a62fad7f49025894a",
  611. "shasum": ""
  612. },
  613. "require": {
  614. "asm89/stack-cors": "^2.0.1",
  615. "illuminate/contracts": "^6|^7|^8",
  616. "illuminate/support": "^6|^7|^8",
  617. "php": ">=7.2",
  618. "symfony/http-foundation": "^4|^5",
  619. "symfony/http-kernel": "^4.3.4|^5"
  620. },
  621. "require-dev": {
  622. "laravel/framework": "^6|^7|^8",
  623. "orchestra/testbench-dusk": "^4|^5|^6",
  624. "phpunit/phpunit": "^6|^7|^8",
  625. "squizlabs/php_codesniffer": "^3.5"
  626. },
  627. "type": "library",
  628. "extra": {
  629. "branch-alias": {
  630. "dev-master": "2.0-dev"
  631. },
  632. "laravel": {
  633. "providers": [
  634. "Fruitcake\\Cors\\CorsServiceProvider"
  635. ]
  636. }
  637. },
  638. "autoload": {
  639. "psr-4": {
  640. "Fruitcake\\Cors\\": "src/"
  641. }
  642. },
  643. "notification-url": "https://packagist.org/downloads/",
  644. "license": [
  645. "MIT"
  646. ],
  647. "authors": [
  648. {
  649. "name": "Fruitcake",
  650. "homepage": "https://fruitcake.nl"
  651. },
  652. {
  653. "name": "Barry vd. Heuvel",
  654. "email": "barryvdh@gmail.com"
  655. }
  656. ],
  657. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  658. "keywords": [
  659. "api",
  660. "cors",
  661. "crossdomain",
  662. "laravel"
  663. ],
  664. "funding": [
  665. {
  666. "url": "https://github.com/barryvdh",
  667. "type": "github"
  668. }
  669. ],
  670. "time": "2020-09-07T11:48:52+00:00"
  671. },
  672. {
  673. "name": "geoip2/geoip2",
  674. "version": "v2.11.0",
  675. "source": {
  676. "type": "git",
  677. "url": "https://github.com/maxmind/GeoIP2-php.git",
  678. "reference": "d01be5894a5c1a3381c58c9b1795cd07f96c30f7"
  679. },
  680. "dist": {
  681. "type": "zip",
  682. "url": "https://api.github.com/repos/maxmind/GeoIP2-php/zipball/d01be5894a5c1a3381c58c9b1795cd07f96c30f7",
  683. "reference": "d01be5894a5c1a3381c58c9b1795cd07f96c30f7",
  684. "shasum": ""
  685. },
  686. "require": {
  687. "ext-json": "*",
  688. "maxmind-db/reader": "~1.8",
  689. "maxmind/web-service-common": "~0.8",
  690. "php": ">=7.2"
  691. },
  692. "require-dev": {
  693. "friendsofphp/php-cs-fixer": "2.*",
  694. "phpunit/phpunit": "^8.0 || ^9.0",
  695. "squizlabs/php_codesniffer": "3.*"
  696. },
  697. "type": "library",
  698. "autoload": {
  699. "psr-4": {
  700. "GeoIp2\\": "src"
  701. }
  702. },
  703. "notification-url": "https://packagist.org/downloads/",
  704. "license": [
  705. "Apache-2.0"
  706. ],
  707. "authors": [
  708. {
  709. "name": "Gregory J. Oschwald",
  710. "email": "goschwald@maxmind.com",
  711. "homepage": "https://www.maxmind.com/"
  712. }
  713. ],
  714. "description": "MaxMind GeoIP2 PHP API",
  715. "homepage": "https://github.com/maxmind/GeoIP2-php",
  716. "keywords": [
  717. "IP",
  718. "geoip",
  719. "geoip2",
  720. "geolocation",
  721. "maxmind"
  722. ],
  723. "time": "2020-10-01T18:48:34+00:00"
  724. },
  725. {
  726. "name": "guzzlehttp/guzzle",
  727. "version": "6.5.5",
  728. "source": {
  729. "type": "git",
  730. "url": "https://github.com/guzzle/guzzle.git",
  731. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  732. },
  733. "dist": {
  734. "type": "zip",
  735. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  736. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  737. "shasum": ""
  738. },
  739. "require": {
  740. "ext-json": "*",
  741. "guzzlehttp/promises": "^1.0",
  742. "guzzlehttp/psr7": "^1.6.1",
  743. "php": ">=5.5",
  744. "symfony/polyfill-intl-idn": "^1.17.0"
  745. },
  746. "require-dev": {
  747. "ext-curl": "*",
  748. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  749. "psr/log": "^1.1"
  750. },
  751. "suggest": {
  752. "psr/log": "Required for using the Log middleware"
  753. },
  754. "type": "library",
  755. "extra": {
  756. "branch-alias": {
  757. "dev-master": "6.5-dev"
  758. }
  759. },
  760. "autoload": {
  761. "psr-4": {
  762. "GuzzleHttp\\": "src/"
  763. },
  764. "files": [
  765. "src/functions_include.php"
  766. ]
  767. },
  768. "notification-url": "https://packagist.org/downloads/",
  769. "license": [
  770. "MIT"
  771. ],
  772. "authors": [
  773. {
  774. "name": "Michael Dowling",
  775. "email": "mtdowling@gmail.com",
  776. "homepage": "https://github.com/mtdowling"
  777. }
  778. ],
  779. "description": "Guzzle is a PHP HTTP client library",
  780. "homepage": "http://guzzlephp.org/",
  781. "keywords": [
  782. "client",
  783. "curl",
  784. "framework",
  785. "http",
  786. "http client",
  787. "rest",
  788. "web service"
  789. ],
  790. "time": "2020-06-16T21:01:06+00:00"
  791. },
  792. {
  793. "name": "guzzlehttp/promises",
  794. "version": "1.4.0",
  795. "source": {
  796. "type": "git",
  797. "url": "https://github.com/guzzle/promises.git",
  798. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  799. },
  800. "dist": {
  801. "type": "zip",
  802. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  803. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  804. "shasum": ""
  805. },
  806. "require": {
  807. "php": ">=5.5"
  808. },
  809. "require-dev": {
  810. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  811. },
  812. "type": "library",
  813. "extra": {
  814. "branch-alias": {
  815. "dev-master": "1.4-dev"
  816. }
  817. },
  818. "autoload": {
  819. "psr-4": {
  820. "GuzzleHttp\\Promise\\": "src/"
  821. },
  822. "files": [
  823. "src/functions_include.php"
  824. ]
  825. },
  826. "notification-url": "https://packagist.org/downloads/",
  827. "license": [
  828. "MIT"
  829. ],
  830. "authors": [
  831. {
  832. "name": "Michael Dowling",
  833. "email": "mtdowling@gmail.com",
  834. "homepage": "https://github.com/mtdowling"
  835. }
  836. ],
  837. "description": "Guzzle promises library",
  838. "keywords": [
  839. "promise"
  840. ],
  841. "time": "2020-09-30T07:37:28+00:00"
  842. },
  843. {
  844. "name": "guzzlehttp/psr7",
  845. "version": "1.7.0",
  846. "source": {
  847. "type": "git",
  848. "url": "https://github.com/guzzle/psr7.git",
  849. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  850. },
  851. "dist": {
  852. "type": "zip",
  853. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  854. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  855. "shasum": ""
  856. },
  857. "require": {
  858. "php": ">=5.4.0",
  859. "psr/http-message": "~1.0",
  860. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  861. },
  862. "provide": {
  863. "psr/http-message-implementation": "1.0"
  864. },
  865. "require-dev": {
  866. "ext-zlib": "*",
  867. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  868. },
  869. "suggest": {
  870. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  871. },
  872. "type": "library",
  873. "extra": {
  874. "branch-alias": {
  875. "dev-master": "1.7-dev"
  876. }
  877. },
  878. "autoload": {
  879. "psr-4": {
  880. "GuzzleHttp\\Psr7\\": "src/"
  881. },
  882. "files": [
  883. "src/functions_include.php"
  884. ]
  885. },
  886. "notification-url": "https://packagist.org/downloads/",
  887. "license": [
  888. "MIT"
  889. ],
  890. "authors": [
  891. {
  892. "name": "Michael Dowling",
  893. "email": "mtdowling@gmail.com",
  894. "homepage": "https://github.com/mtdowling"
  895. },
  896. {
  897. "name": "Tobias Schultze",
  898. "homepage": "https://github.com/Tobion"
  899. }
  900. ],
  901. "description": "PSR-7 message implementation that also provides common utility methods",
  902. "keywords": [
  903. "http",
  904. "message",
  905. "psr-7",
  906. "request",
  907. "response",
  908. "stream",
  909. "uri",
  910. "url"
  911. ],
  912. "time": "2020-09-30T07:37:11+00:00"
  913. },
  914. {
  915. "name": "intervention/image",
  916. "version": "2.5.1",
  917. "source": {
  918. "type": "git",
  919. "url": "https://github.com/Intervention/image.git",
  920. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
  921. },
  922. "dist": {
  923. "type": "zip",
  924. "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  925. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  926. "shasum": ""
  927. },
  928. "require": {
  929. "ext-fileinfo": "*",
  930. "guzzlehttp/psr7": "~1.1",
  931. "php": ">=5.4.0"
  932. },
  933. "require-dev": {
  934. "mockery/mockery": "~0.9.2",
  935. "phpunit/phpunit": "^4.8 || ^5.7"
  936. },
  937. "suggest": {
  938. "ext-gd": "to use GD library based image processing.",
  939. "ext-imagick": "to use Imagick based image processing.",
  940. "intervention/imagecache": "Caching extension for the Intervention Image library"
  941. },
  942. "type": "library",
  943. "extra": {
  944. "branch-alias": {
  945. "dev-master": "2.4-dev"
  946. },
  947. "laravel": {
  948. "providers": [
  949. "Intervention\\Image\\ImageServiceProvider"
  950. ],
  951. "aliases": {
  952. "Image": "Intervention\\Image\\Facades\\Image"
  953. }
  954. }
  955. },
  956. "autoload": {
  957. "psr-4": {
  958. "Intervention\\Image\\": "src/Intervention/Image"
  959. }
  960. },
  961. "notification-url": "https://packagist.org/downloads/",
  962. "license": [
  963. "MIT"
  964. ],
  965. "authors": [
  966. {
  967. "name": "Oliver Vogel",
  968. "email": "oliver@olivervogel.com",
  969. "homepage": "http://olivervogel.com/"
  970. }
  971. ],
  972. "description": "Image handling and manipulation library with support for Laravel integration",
  973. "homepage": "http://image.intervention.io/",
  974. "keywords": [
  975. "gd",
  976. "image",
  977. "imagick",
  978. "laravel",
  979. "thumbnail",
  980. "watermark"
  981. ],
  982. "time": "2019-11-02T09:15:47+00:00"
  983. },
  984. {
  985. "name": "ip2location/ip2location-laravel",
  986. "version": "1.2.0",
  987. "source": {
  988. "type": "git",
  989. "url": "https://github.com/ip2location/ip2location-laravel.git",
  990. "reference": "56b0da66e12982ef6db0e2fe3b231659c5e76a9b"
  991. },
  992. "dist": {
  993. "type": "zip",
  994. "url": "https://api.github.com/repos/ip2location/ip2location-laravel/zipball/56b0da66e12982ef6db0e2fe3b231659c5e76a9b",
  995. "reference": "56b0da66e12982ef6db0e2fe3b231659c5e76a9b",
  996. "shasum": ""
  997. },
  998. "require": {
  999. "ip2location/ip2location-php": "8.*",
  1000. "php": ">=5.4"
  1001. },
  1002. "type": "library",
  1003. "autoload": {
  1004. "psr-4": {
  1005. "Ip2location\\IP2LocationLaravel\\": "src/"
  1006. }
  1007. },
  1008. "notification-url": "https://packagist.org/downloads/",
  1009. "license": [
  1010. "MIT"
  1011. ],
  1012. "authors": [
  1013. {
  1014. "name": "IP2Location",
  1015. "email": "support@ip2location.com"
  1016. }
  1017. ],
  1018. "description": "Lookup for visitor's IP information, such as country, region, city, coordinates, zip code, time zone, ISP, domain name, connection type, area code, weather, MCC, MNC, mobile brand name, elevation and usage type.",
  1019. "keywords": [
  1020. "geolocation",
  1021. "ip2location",
  1022. "laravel",
  1023. "laravel 5",
  1024. "laravel 7"
  1025. ],
  1026. "time": "2020-08-27T07:47:55+00:00"
  1027. },
  1028. {
  1029. "name": "ip2location/ip2location-php",
  1030. "version": "8.2.3",
  1031. "source": {
  1032. "type": "git",
  1033. "url": "https://github.com/chrislim2888/IP2Location-PHP-Module.git",
  1034. "reference": "532749399c73b664ca8b24770b40b6c479131870"
  1035. },
  1036. "dist": {
  1037. "type": "zip",
  1038. "url": "https://api.github.com/repos/chrislim2888/IP2Location-PHP-Module/zipball/532749399c73b664ca8b24770b40b6c479131870",
  1039. "reference": "532749399c73b664ca8b24770b40b6c479131870",
  1040. "shasum": ""
  1041. },
  1042. "type": "library",
  1043. "autoload": {
  1044. "classmap": [
  1045. "IP2Location.php"
  1046. ]
  1047. },
  1048. "notification-url": "https://packagist.org/downloads/",
  1049. "license": [
  1050. "MIT"
  1051. ],
  1052. "authors": [
  1053. {
  1054. "name": "IP2Location",
  1055. "email": "support@ip2location.com",
  1056. "homepage": "http://www.ip2location.com"
  1057. }
  1058. ],
  1059. "description": "[Official Release] IP2Location PHP API to get location info from IPv4 and IPv6 address.",
  1060. "homepage": "http://www.ip2location.com",
  1061. "keywords": [
  1062. "geolocation",
  1063. "ip2location",
  1064. "ip2locationlite"
  1065. ],
  1066. "time": "2020-09-23T23:04:28+00:00"
  1067. },
  1068. {
  1069. "name": "ipip/db",
  1070. "version": "v1.0.0",
  1071. "source": {
  1072. "type": "git",
  1073. "url": "https://github.com/ipipdotnet/ipdb-php.git",
  1074. "reference": "af42bf28b37dc76beccd7bbe2b0b0572e21f42cf"
  1075. },
  1076. "dist": {
  1077. "type": "zip",
  1078. "url": "https://api.github.com/repos/ipipdotnet/ipdb-php/zipball/af42bf28b37dc76beccd7bbe2b0b0572e21f42cf",
  1079. "reference": "af42bf28b37dc76beccd7bbe2b0b0572e21f42cf",
  1080. "shasum": ""
  1081. },
  1082. "require": {
  1083. "php": ">=5.4.0"
  1084. },
  1085. "type": "library",
  1086. "autoload": {
  1087. "psr-4": {
  1088. "ipip\\db\\": "src/ipip/db/"
  1089. }
  1090. },
  1091. "notification-url": "https://packagist.org/downloads/",
  1092. "license": [
  1093. "Apache-2.0"
  1094. ],
  1095. "authors": [
  1096. {
  1097. "name": "IPIP.net",
  1098. "email": "frk@ipip.net",
  1099. "homepage": "https://www.ipip.net"
  1100. }
  1101. ],
  1102. "description": "IPIP.net officially supported IP database ipdb format parsing library",
  1103. "homepage": "https://www.ipip.net",
  1104. "keywords": [
  1105. "IP",
  1106. "geo",
  1107. "geoip",
  1108. "geolocation",
  1109. "ipdb",
  1110. "ipip.net"
  1111. ],
  1112. "time": "2018-11-01T08:07:04+00:00"
  1113. },
  1114. {
  1115. "name": "jaybizzle/crawler-detect",
  1116. "version": "v1.2.99",
  1117. "source": {
  1118. "type": "git",
  1119. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  1120. "reference": "0ffea34489b258a2709bfe93a9553e1efa5d1904"
  1121. },
  1122. "dist": {
  1123. "type": "zip",
  1124. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/0ffea34489b258a2709bfe93a9553e1efa5d1904",
  1125. "reference": "0ffea34489b258a2709bfe93a9553e1efa5d1904",
  1126. "shasum": ""
  1127. },
  1128. "require": {
  1129. "php": ">=5.3.0"
  1130. },
  1131. "require-dev": {
  1132. "phpunit/phpunit": "^4.8|^5.5|^6.5",
  1133. "satooshi/php-coveralls": "1.*"
  1134. },
  1135. "type": "library",
  1136. "autoload": {
  1137. "psr-4": {
  1138. "Jaybizzle\\CrawlerDetect\\": "src/"
  1139. }
  1140. },
  1141. "notification-url": "https://packagist.org/downloads/",
  1142. "license": [
  1143. "MIT"
  1144. ],
  1145. "authors": [
  1146. {
  1147. "name": "Mark Beech",
  1148. "email": "m@rkbee.ch",
  1149. "role": "Developer"
  1150. }
  1151. ],
  1152. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  1153. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  1154. "keywords": [
  1155. "crawler",
  1156. "crawler detect",
  1157. "crawler detector",
  1158. "crawlerdetect",
  1159. "php crawler detect"
  1160. ],
  1161. "time": "2020-08-25T21:35:55+00:00"
  1162. },
  1163. {
  1164. "name": "jenssegers/agent",
  1165. "version": "v2.6.4",
  1166. "source": {
  1167. "type": "git",
  1168. "url": "https://github.com/jenssegers/agent.git",
  1169. "reference": "daa11c43729510b3700bc34d414664966b03bffe"
  1170. },
  1171. "dist": {
  1172. "type": "zip",
  1173. "url": "https://api.github.com/repos/jenssegers/agent/zipball/daa11c43729510b3700bc34d414664966b03bffe",
  1174. "reference": "daa11c43729510b3700bc34d414664966b03bffe",
  1175. "shasum": ""
  1176. },
  1177. "require": {
  1178. "jaybizzle/crawler-detect": "^1.2",
  1179. "mobiledetect/mobiledetectlib": "^2.7.6",
  1180. "php": ">=5.6"
  1181. },
  1182. "require-dev": {
  1183. "php-coveralls/php-coveralls": "^2.1",
  1184. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  1185. },
  1186. "suggest": {
  1187. "illuminate/support": "Required for laravel service providers"
  1188. },
  1189. "type": "library",
  1190. "extra": {
  1191. "branch-alias": {
  1192. "dev-master": "3.0-dev"
  1193. },
  1194. "laravel": {
  1195. "providers": [
  1196. "Jenssegers\\Agent\\AgentServiceProvider"
  1197. ],
  1198. "aliases": {
  1199. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  1200. }
  1201. }
  1202. },
  1203. "autoload": {
  1204. "psr-4": {
  1205. "Jenssegers\\Agent\\": "src/"
  1206. }
  1207. },
  1208. "notification-url": "https://packagist.org/downloads/",
  1209. "license": [
  1210. "MIT"
  1211. ],
  1212. "authors": [
  1213. {
  1214. "name": "Jens Segers",
  1215. "homepage": "https://jenssegers.com"
  1216. }
  1217. ],
  1218. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  1219. "homepage": "https://github.com/jenssegers/agent",
  1220. "keywords": [
  1221. "Agent",
  1222. "browser",
  1223. "desktop",
  1224. "laravel",
  1225. "mobile",
  1226. "platform",
  1227. "user agent",
  1228. "useragent"
  1229. ],
  1230. "funding": [
  1231. {
  1232. "url": "https://github.com/jenssegers",
  1233. "type": "github"
  1234. },
  1235. {
  1236. "url": "https://tidelift.com/funding/github/packagist/jenssegers/agent",
  1237. "type": "tidelift"
  1238. }
  1239. ],
  1240. "time": "2020-06-13T08:05:20+00:00"
  1241. },
  1242. {
  1243. "name": "laravel-lang/lang",
  1244. "version": "7.0.6",
  1245. "source": {
  1246. "type": "git",
  1247. "url": "https://github.com/Laravel-Lang/lang.git",
  1248. "reference": "bb0045f740dd7ac26ba97a3483b024e8c5cfdca1"
  1249. },
  1250. "dist": {
  1251. "type": "zip",
  1252. "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/bb0045f740dd7ac26ba97a3483b024e8c5cfdca1",
  1253. "reference": "bb0045f740dd7ac26ba97a3483b024e8c5cfdca1",
  1254. "shasum": ""
  1255. },
  1256. "require": {
  1257. "ext-json": "*"
  1258. },
  1259. "suggest": {
  1260. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  1261. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  1262. "overtrue/laravel-lang": "Command to add languages in your project"
  1263. },
  1264. "type": "library",
  1265. "notification-url": "https://packagist.org/downloads/",
  1266. "license": [
  1267. "MIT"
  1268. ],
  1269. "authors": [
  1270. {
  1271. "name": "Laravel-Lang Team"
  1272. }
  1273. ],
  1274. "description": "Languages for Laravel",
  1275. "keywords": [
  1276. "lang",
  1277. "languages",
  1278. "laravel",
  1279. "lpm"
  1280. ],
  1281. "time": "2020-09-30T18:39:01+00:00"
  1282. },
  1283. {
  1284. "name": "laravel/framework",
  1285. "version": "v7.28.3",
  1286. "source": {
  1287. "type": "git",
  1288. "url": "https://github.com/laravel/framework.git",
  1289. "reference": "b0942c391975972b1a54b2dc983e33a239f169a9"
  1290. },
  1291. "dist": {
  1292. "type": "zip",
  1293. "url": "https://api.github.com/repos/laravel/framework/zipball/b0942c391975972b1a54b2dc983e33a239f169a9",
  1294. "reference": "b0942c391975972b1a54b2dc983e33a239f169a9",
  1295. "shasum": ""
  1296. },
  1297. "require": {
  1298. "doctrine/inflector": "^1.4|^2.0",
  1299. "dragonmantank/cron-expression": "^2.0",
  1300. "egulias/email-validator": "^2.1.10",
  1301. "ext-json": "*",
  1302. "ext-mbstring": "*",
  1303. "ext-openssl": "*",
  1304. "league/commonmark": "^1.3",
  1305. "league/flysystem": "^1.0.34",
  1306. "monolog/monolog": "^2.0",
  1307. "nesbot/carbon": "^2.17",
  1308. "opis/closure": "^3.1",
  1309. "php": "^7.2.5",
  1310. "psr/container": "^1.0",
  1311. "psr/simple-cache": "^1.0",
  1312. "ramsey/uuid": "^3.7|^4.0",
  1313. "swiftmailer/swiftmailer": "^6.0",
  1314. "symfony/console": "^5.0",
  1315. "symfony/error-handler": "^5.0",
  1316. "symfony/finder": "^5.0",
  1317. "symfony/http-foundation": "^5.0",
  1318. "symfony/http-kernel": "^5.0",
  1319. "symfony/mime": "^5.0",
  1320. "symfony/polyfill-php73": "^1.17",
  1321. "symfony/process": "^5.0",
  1322. "symfony/routing": "^5.0",
  1323. "symfony/var-dumper": "^5.0",
  1324. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1325. "vlucas/phpdotenv": "^4.0",
  1326. "voku/portable-ascii": "^1.4.8"
  1327. },
  1328. "conflict": {
  1329. "tightenco/collect": "<5.5.33"
  1330. },
  1331. "provide": {
  1332. "psr/container-implementation": "1.0"
  1333. },
  1334. "replace": {
  1335. "illuminate/auth": "self.version",
  1336. "illuminate/broadcasting": "self.version",
  1337. "illuminate/bus": "self.version",
  1338. "illuminate/cache": "self.version",
  1339. "illuminate/config": "self.version",
  1340. "illuminate/console": "self.version",
  1341. "illuminate/container": "self.version",
  1342. "illuminate/contracts": "self.version",
  1343. "illuminate/cookie": "self.version",
  1344. "illuminate/database": "self.version",
  1345. "illuminate/encryption": "self.version",
  1346. "illuminate/events": "self.version",
  1347. "illuminate/filesystem": "self.version",
  1348. "illuminate/hashing": "self.version",
  1349. "illuminate/http": "self.version",
  1350. "illuminate/log": "self.version",
  1351. "illuminate/mail": "self.version",
  1352. "illuminate/notifications": "self.version",
  1353. "illuminate/pagination": "self.version",
  1354. "illuminate/pipeline": "self.version",
  1355. "illuminate/queue": "self.version",
  1356. "illuminate/redis": "self.version",
  1357. "illuminate/routing": "self.version",
  1358. "illuminate/session": "self.version",
  1359. "illuminate/support": "self.version",
  1360. "illuminate/testing": "self.version",
  1361. "illuminate/translation": "self.version",
  1362. "illuminate/validation": "self.version",
  1363. "illuminate/view": "self.version"
  1364. },
  1365. "require-dev": {
  1366. "aws/aws-sdk-php": "^3.0",
  1367. "doctrine/dbal": "^2.6",
  1368. "filp/whoops": "^2.4",
  1369. "guzzlehttp/guzzle": "^6.3.1|^7.0",
  1370. "league/flysystem-cached-adapter": "^1.0",
  1371. "mockery/mockery": "^1.3.1",
  1372. "moontoast/math": "^1.1",
  1373. "orchestra/testbench-core": "^5.0",
  1374. "pda/pheanstalk": "^4.0",
  1375. "phpunit/phpunit": "^8.4|^9.0",
  1376. "predis/predis": "^1.1.1",
  1377. "symfony/cache": "^5.0"
  1378. },
  1379. "suggest": {
  1380. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.0).",
  1381. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  1382. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1383. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1384. "ext-memcached": "Required to use the memcache cache driver.",
  1385. "ext-pcntl": "Required to use all features of the queue worker.",
  1386. "ext-posix": "Required to use all features of the queue worker.",
  1387. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1388. "filp/whoops": "Required for friendly error pages in development (^2.4).",
  1389. "fzaninotto/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1390. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0).",
  1391. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1392. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1393. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1394. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1395. "mockery/mockery": "Required to use mocking (^1.3.1).",
  1396. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  1397. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1398. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1399. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.0).",
  1400. "predis/predis": "Required to use the predis connector (^1.1.2).",
  1401. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1402. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  1403. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  1404. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  1405. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1406. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1407. },
  1408. "type": "library",
  1409. "extra": {
  1410. "branch-alias": {
  1411. "dev-master": "7.x-dev"
  1412. }
  1413. },
  1414. "autoload": {
  1415. "files": [
  1416. "src/Illuminate/Foundation/helpers.php",
  1417. "src/Illuminate/Support/helpers.php"
  1418. ],
  1419. "psr-4": {
  1420. "Illuminate\\": "src/Illuminate/"
  1421. }
  1422. },
  1423. "notification-url": "https://packagist.org/downloads/",
  1424. "license": [
  1425. "MIT"
  1426. ],
  1427. "authors": [
  1428. {
  1429. "name": "Taylor Otwell",
  1430. "email": "taylor@laravel.com"
  1431. }
  1432. ],
  1433. "description": "The Laravel Framework.",
  1434. "homepage": "https://laravel.com",
  1435. "keywords": [
  1436. "framework",
  1437. "laravel"
  1438. ],
  1439. "time": "2020-09-17T14:23:26+00:00"
  1440. },
  1441. {
  1442. "name": "laravel/tinker",
  1443. "version": "v2.4.2",
  1444. "source": {
  1445. "type": "git",
  1446. "url": "https://github.com/laravel/tinker.git",
  1447. "reference": "58424c24e8aec31c3a3ac54eb3adb15e8a0a067b"
  1448. },
  1449. "dist": {
  1450. "type": "zip",
  1451. "url": "https://api.github.com/repos/laravel/tinker/zipball/58424c24e8aec31c3a3ac54eb3adb15e8a0a067b",
  1452. "reference": "58424c24e8aec31c3a3ac54eb3adb15e8a0a067b",
  1453. "shasum": ""
  1454. },
  1455. "require": {
  1456. "illuminate/console": "^6.0|^7.0|^8.0",
  1457. "illuminate/contracts": "^6.0|^7.0|^8.0",
  1458. "illuminate/support": "^6.0|^7.0|^8.0",
  1459. "php": "^7.2",
  1460. "psy/psysh": "^0.10.3",
  1461. "symfony/var-dumper": "^4.3|^5.0"
  1462. },
  1463. "require-dev": {
  1464. "mockery/mockery": "^1.3.1",
  1465. "phpunit/phpunit": "^8.4|^9.0"
  1466. },
  1467. "suggest": {
  1468. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  1469. },
  1470. "type": "library",
  1471. "extra": {
  1472. "branch-alias": {
  1473. "dev-master": "2.x-dev"
  1474. },
  1475. "laravel": {
  1476. "providers": [
  1477. "Laravel\\Tinker\\TinkerServiceProvider"
  1478. ]
  1479. }
  1480. },
  1481. "autoload": {
  1482. "psr-4": {
  1483. "Laravel\\Tinker\\": "src/"
  1484. }
  1485. },
  1486. "notification-url": "https://packagist.org/downloads/",
  1487. "license": [
  1488. "MIT"
  1489. ],
  1490. "authors": [
  1491. {
  1492. "name": "Taylor Otwell",
  1493. "email": "taylor@laravel.com"
  1494. }
  1495. ],
  1496. "description": "Powerful REPL for the Laravel framework.",
  1497. "keywords": [
  1498. "REPL",
  1499. "Tinker",
  1500. "laravel",
  1501. "psysh"
  1502. ],
  1503. "time": "2020-08-11T19:28:08+00:00"
  1504. },
  1505. {
  1506. "name": "league/commonmark",
  1507. "version": "1.5.5",
  1508. "source": {
  1509. "type": "git",
  1510. "url": "https://github.com/thephpleague/commonmark.git",
  1511. "reference": "45832dfed6007b984c0d40addfac48d403dc6432"
  1512. },
  1513. "dist": {
  1514. "type": "zip",
  1515. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/45832dfed6007b984c0d40addfac48d403dc6432",
  1516. "reference": "45832dfed6007b984c0d40addfac48d403dc6432",
  1517. "shasum": ""
  1518. },
  1519. "require": {
  1520. "ext-mbstring": "*",
  1521. "php": "^7.1 || ^8.0"
  1522. },
  1523. "conflict": {
  1524. "scrutinizer/ocular": "1.7.*"
  1525. },
  1526. "require-dev": {
  1527. "cebe/markdown": "~1.0",
  1528. "commonmark/commonmark.js": "0.29.2",
  1529. "erusev/parsedown": "~1.0",
  1530. "ext-json": "*",
  1531. "github/gfm": "0.29.0",
  1532. "michelf/php-markdown": "~1.4",
  1533. "mikehaertl/php-shellcommand": "^1.4",
  1534. "phpstan/phpstan": "^0.12",
  1535. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  1536. "scrutinizer/ocular": "^1.5",
  1537. "symfony/finder": "^4.2"
  1538. },
  1539. "bin": [
  1540. "bin/commonmark"
  1541. ],
  1542. "type": "library",
  1543. "autoload": {
  1544. "psr-4": {
  1545. "League\\CommonMark\\": "src"
  1546. }
  1547. },
  1548. "notification-url": "https://packagist.org/downloads/",
  1549. "license": [
  1550. "BSD-3-Clause"
  1551. ],
  1552. "authors": [
  1553. {
  1554. "name": "Colin O'Dell",
  1555. "email": "colinodell@gmail.com",
  1556. "homepage": "https://www.colinodell.com",
  1557. "role": "Lead Developer"
  1558. }
  1559. ],
  1560. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  1561. "homepage": "https://commonmark.thephpleague.com",
  1562. "keywords": [
  1563. "commonmark",
  1564. "flavored",
  1565. "gfm",
  1566. "github",
  1567. "github-flavored",
  1568. "markdown",
  1569. "md",
  1570. "parser"
  1571. ],
  1572. "funding": [
  1573. {
  1574. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  1575. "type": "custom"
  1576. },
  1577. {
  1578. "url": "https://www.colinodell.com/sponsor",
  1579. "type": "custom"
  1580. },
  1581. {
  1582. "url": "https://www.paypal.me/colinpodell/10.00",
  1583. "type": "custom"
  1584. },
  1585. {
  1586. "url": "https://github.com/colinodell",
  1587. "type": "github"
  1588. },
  1589. {
  1590. "url": "https://www.patreon.com/colinodell",
  1591. "type": "patreon"
  1592. },
  1593. {
  1594. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1595. "type": "tidelift"
  1596. }
  1597. ],
  1598. "time": "2020-09-13T14:44:46+00:00"
  1599. },
  1600. {
  1601. "name": "league/flysystem",
  1602. "version": "1.1.3",
  1603. "source": {
  1604. "type": "git",
  1605. "url": "https://github.com/thephpleague/flysystem.git",
  1606. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  1607. },
  1608. "dist": {
  1609. "type": "zip",
  1610. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  1611. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  1612. "shasum": ""
  1613. },
  1614. "require": {
  1615. "ext-fileinfo": "*",
  1616. "league/mime-type-detection": "^1.3",
  1617. "php": "^7.2.5 || ^8.0"
  1618. },
  1619. "conflict": {
  1620. "league/flysystem-sftp": "<1.0.6"
  1621. },
  1622. "require-dev": {
  1623. "phpspec/prophecy": "^1.11.1",
  1624. "phpunit/phpunit": "^8.5.8"
  1625. },
  1626. "suggest": {
  1627. "ext-fileinfo": "Required for MimeType",
  1628. "ext-ftp": "Allows you to use FTP server storage",
  1629. "ext-openssl": "Allows you to use FTPS server storage",
  1630. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1631. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1632. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1633. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1634. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1635. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1636. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1637. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1638. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1639. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1640. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1641. },
  1642. "type": "library",
  1643. "extra": {
  1644. "branch-alias": {
  1645. "dev-master": "1.1-dev"
  1646. }
  1647. },
  1648. "autoload": {
  1649. "psr-4": {
  1650. "League\\Flysystem\\": "src/"
  1651. }
  1652. },
  1653. "notification-url": "https://packagist.org/downloads/",
  1654. "license": [
  1655. "MIT"
  1656. ],
  1657. "authors": [
  1658. {
  1659. "name": "Frank de Jonge",
  1660. "email": "info@frenky.net"
  1661. }
  1662. ],
  1663. "description": "Filesystem abstraction: Many filesystems, one API.",
  1664. "keywords": [
  1665. "Cloud Files",
  1666. "WebDAV",
  1667. "abstraction",
  1668. "aws",
  1669. "cloud",
  1670. "copy.com",
  1671. "dropbox",
  1672. "file systems",
  1673. "files",
  1674. "filesystem",
  1675. "filesystems",
  1676. "ftp",
  1677. "rackspace",
  1678. "remote",
  1679. "s3",
  1680. "sftp",
  1681. "storage"
  1682. ],
  1683. "funding": [
  1684. {
  1685. "url": "https://offset.earth/frankdejonge",
  1686. "type": "other"
  1687. }
  1688. ],
  1689. "time": "2020-08-23T07:39:11+00:00"
  1690. },
  1691. {
  1692. "name": "league/mime-type-detection",
  1693. "version": "1.5.0",
  1694. "source": {
  1695. "type": "git",
  1696. "url": "https://github.com/thephpleague/mime-type-detection.git",
  1697. "reference": "ea2fbfc988bade315acd5967e6d02274086d0f28"
  1698. },
  1699. "dist": {
  1700. "type": "zip",
  1701. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ea2fbfc988bade315acd5967e6d02274086d0f28",
  1702. "reference": "ea2fbfc988bade315acd5967e6d02274086d0f28",
  1703. "shasum": ""
  1704. },
  1705. "require": {
  1706. "ext-fileinfo": "*",
  1707. "php": "^7.2 || ^8.0"
  1708. },
  1709. "require-dev": {
  1710. "phpstan/phpstan": "^0.12.36",
  1711. "phpunit/phpunit": "^8.5.8"
  1712. },
  1713. "type": "library",
  1714. "autoload": {
  1715. "psr-4": {
  1716. "League\\MimeTypeDetection\\": "src"
  1717. }
  1718. },
  1719. "notification-url": "https://packagist.org/downloads/",
  1720. "license": [
  1721. "MIT"
  1722. ],
  1723. "authors": [
  1724. {
  1725. "name": "Frank de Jonge",
  1726. "email": "info@frankdejonge.nl"
  1727. }
  1728. ],
  1729. "description": "Mime-type detection for Flysystem",
  1730. "funding": [
  1731. {
  1732. "url": "https://github.com/frankdejonge",
  1733. "type": "github"
  1734. },
  1735. {
  1736. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1737. "type": "tidelift"
  1738. }
  1739. ],
  1740. "time": "2020-09-21T18:10:53+00:00"
  1741. },
  1742. {
  1743. "name": "maennchen/zipstream-php",
  1744. "version": "2.1.0",
  1745. "source": {
  1746. "type": "git",
  1747. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  1748. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  1749. },
  1750. "dist": {
  1751. "type": "zip",
  1752. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  1753. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  1754. "shasum": ""
  1755. },
  1756. "require": {
  1757. "myclabs/php-enum": "^1.5",
  1758. "php": ">= 7.1",
  1759. "psr/http-message": "^1.0",
  1760. "symfony/polyfill-mbstring": "^1.0"
  1761. },
  1762. "require-dev": {
  1763. "ext-zip": "*",
  1764. "guzzlehttp/guzzle": ">= 6.3",
  1765. "mikey179/vfsstream": "^1.6",
  1766. "phpunit/phpunit": ">= 7.5"
  1767. },
  1768. "type": "library",
  1769. "autoload": {
  1770. "psr-4": {
  1771. "ZipStream\\": "src/"
  1772. }
  1773. },
  1774. "notification-url": "https://packagist.org/downloads/",
  1775. "license": [
  1776. "MIT"
  1777. ],
  1778. "authors": [
  1779. {
  1780. "name": "Paul Duncan",
  1781. "email": "pabs@pablotron.org"
  1782. },
  1783. {
  1784. "name": "Jonatan Männchen",
  1785. "email": "jonatan@maennchen.ch"
  1786. },
  1787. {
  1788. "name": "Jesse Donat",
  1789. "email": "donatj@gmail.com"
  1790. },
  1791. {
  1792. "name": "András Kolesár",
  1793. "email": "kolesar@kolesar.hu"
  1794. }
  1795. ],
  1796. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  1797. "keywords": [
  1798. "stream",
  1799. "zip"
  1800. ],
  1801. "funding": [
  1802. {
  1803. "url": "https://opencollective.com/zipstream",
  1804. "type": "open_collective"
  1805. }
  1806. ],
  1807. "time": "2020-05-30T13:11:16+00:00"
  1808. },
  1809. {
  1810. "name": "markbaker/complex",
  1811. "version": "1.5.0",
  1812. "source": {
  1813. "type": "git",
  1814. "url": "https://github.com/MarkBaker/PHPComplex.git",
  1815. "reference": "c3131244e29c08d44fefb49e0dd35021e9e39dd2"
  1816. },
  1817. "dist": {
  1818. "type": "zip",
  1819. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/c3131244e29c08d44fefb49e0dd35021e9e39dd2",
  1820. "reference": "c3131244e29c08d44fefb49e0dd35021e9e39dd2",
  1821. "shasum": ""
  1822. },
  1823. "require": {
  1824. "php": "^5.6.0|^7.0"
  1825. },
  1826. "require-dev": {
  1827. "dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
  1828. "phpcompatibility/php-compatibility": "^9.0",
  1829. "phpdocumentor/phpdocumentor": "2.*",
  1830. "phploc/phploc": "^4.0|^5.0|^6.0|^7.0",
  1831. "phpmd/phpmd": "2.*",
  1832. "phpunit/phpunit": "^4.8.35|^5.0|^6.0|^7.0",
  1833. "sebastian/phpcpd": "2.*",
  1834. "squizlabs/php_codesniffer": "^3.4.0"
  1835. },
  1836. "type": "library",
  1837. "autoload": {
  1838. "psr-4": {
  1839. "Complex\\": "classes/src/"
  1840. },
  1841. "files": [
  1842. "classes/src/functions/abs.php",
  1843. "classes/src/functions/acos.php",
  1844. "classes/src/functions/acosh.php",
  1845. "classes/src/functions/acot.php",
  1846. "classes/src/functions/acoth.php",
  1847. "classes/src/functions/acsc.php",
  1848. "classes/src/functions/acsch.php",
  1849. "classes/src/functions/argument.php",
  1850. "classes/src/functions/asec.php",
  1851. "classes/src/functions/asech.php",
  1852. "classes/src/functions/asin.php",
  1853. "classes/src/functions/asinh.php",
  1854. "classes/src/functions/atan.php",
  1855. "classes/src/functions/atanh.php",
  1856. "classes/src/functions/conjugate.php",
  1857. "classes/src/functions/cos.php",
  1858. "classes/src/functions/cosh.php",
  1859. "classes/src/functions/cot.php",
  1860. "classes/src/functions/coth.php",
  1861. "classes/src/functions/csc.php",
  1862. "classes/src/functions/csch.php",
  1863. "classes/src/functions/exp.php",
  1864. "classes/src/functions/inverse.php",
  1865. "classes/src/functions/ln.php",
  1866. "classes/src/functions/log2.php",
  1867. "classes/src/functions/log10.php",
  1868. "classes/src/functions/negative.php",
  1869. "classes/src/functions/pow.php",
  1870. "classes/src/functions/rho.php",
  1871. "classes/src/functions/sec.php",
  1872. "classes/src/functions/sech.php",
  1873. "classes/src/functions/sin.php",
  1874. "classes/src/functions/sinh.php",
  1875. "classes/src/functions/sqrt.php",
  1876. "classes/src/functions/tan.php",
  1877. "classes/src/functions/tanh.php",
  1878. "classes/src/functions/theta.php",
  1879. "classes/src/operations/add.php",
  1880. "classes/src/operations/subtract.php",
  1881. "classes/src/operations/multiply.php",
  1882. "classes/src/operations/divideby.php",
  1883. "classes/src/operations/divideinto.php"
  1884. ]
  1885. },
  1886. "notification-url": "https://packagist.org/downloads/",
  1887. "license": [
  1888. "MIT"
  1889. ],
  1890. "authors": [
  1891. {
  1892. "name": "Mark Baker",
  1893. "email": "mark@lange.demon.co.uk"
  1894. }
  1895. ],
  1896. "description": "PHP Class for working with complex numbers",
  1897. "homepage": "https://github.com/MarkBaker/PHPComplex",
  1898. "keywords": [
  1899. "complex",
  1900. "mathematics"
  1901. ],
  1902. "time": "2020-08-26T19:47:57+00:00"
  1903. },
  1904. {
  1905. "name": "markbaker/matrix",
  1906. "version": "1.2.1",
  1907. "source": {
  1908. "type": "git",
  1909. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  1910. "reference": "182d44c3b2e3b063468f7481ae3ef71c69dc1409"
  1911. },
  1912. "dist": {
  1913. "type": "zip",
  1914. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/182d44c3b2e3b063468f7481ae3ef71c69dc1409",
  1915. "reference": "182d44c3b2e3b063468f7481ae3ef71c69dc1409",
  1916. "shasum": ""
  1917. },
  1918. "require": {
  1919. "php": "^5.6.0|^7.0.0"
  1920. },
  1921. "require-dev": {
  1922. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  1923. "phpcompatibility/php-compatibility": "dev-master",
  1924. "phploc/phploc": "^4",
  1925. "phpmd/phpmd": "dev-master",
  1926. "phpunit/phpunit": "^5.7|^6.0|7.0",
  1927. "sebastian/phpcpd": "^3.0",
  1928. "squizlabs/php_codesniffer": "^3.0@dev"
  1929. },
  1930. "type": "library",
  1931. "autoload": {
  1932. "psr-4": {
  1933. "Matrix\\": "classes/src/"
  1934. },
  1935. "files": [
  1936. "classes/src/functions/adjoint.php",
  1937. "classes/src/functions/antidiagonal.php",
  1938. "classes/src/functions/cofactors.php",
  1939. "classes/src/functions/determinant.php",
  1940. "classes/src/functions/diagonal.php",
  1941. "classes/src/functions/identity.php",
  1942. "classes/src/functions/inverse.php",
  1943. "classes/src/functions/minors.php",
  1944. "classes/src/functions/trace.php",
  1945. "classes/src/functions/transpose.php",
  1946. "classes/src/operations/add.php",
  1947. "classes/src/operations/directsum.php",
  1948. "classes/src/operations/subtract.php",
  1949. "classes/src/operations/multiply.php",
  1950. "classes/src/operations/divideby.php",
  1951. "classes/src/operations/divideinto.php"
  1952. ]
  1953. },
  1954. "notification-url": "https://packagist.org/downloads/",
  1955. "license": [
  1956. "MIT"
  1957. ],
  1958. "authors": [
  1959. {
  1960. "name": "Mark Baker",
  1961. "email": "mark@lange.demon.co.uk"
  1962. }
  1963. ],
  1964. "description": "PHP Class for working with matrices",
  1965. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  1966. "keywords": [
  1967. "mathematics",
  1968. "matrix",
  1969. "vector"
  1970. ],
  1971. "time": "2020-08-28T19:41:55+00:00"
  1972. },
  1973. {
  1974. "name": "maxmind-db/reader",
  1975. "version": "v1.8.0",
  1976. "source": {
  1977. "type": "git",
  1978. "url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git",
  1979. "reference": "b566d429ac9aec10594b0935be8ff38302f8d5c8"
  1980. },
  1981. "dist": {
  1982. "type": "zip",
  1983. "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/b566d429ac9aec10594b0935be8ff38302f8d5c8",
  1984. "reference": "b566d429ac9aec10594b0935be8ff38302f8d5c8",
  1985. "shasum": ""
  1986. },
  1987. "require": {
  1988. "php": ">=7.2"
  1989. },
  1990. "conflict": {
  1991. "ext-maxminddb": "<1.8.0,>=2.0.0"
  1992. },
  1993. "require-dev": {
  1994. "friendsofphp/php-cs-fixer": "2.*",
  1995. "php-coveralls/php-coveralls": "^2.1",
  1996. "phpunit/phpcov": ">=6.0.0",
  1997. "phpunit/phpunit": ">=8.0.0,<10.0.0",
  1998. "squizlabs/php_codesniffer": "3.*"
  1999. },
  2000. "suggest": {
  2001. "ext-bcmath": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2002. "ext-gmp": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2003. "ext-maxminddb": "A C-based database decoder that provides significantly faster lookups"
  2004. },
  2005. "type": "library",
  2006. "autoload": {
  2007. "psr-4": {
  2008. "MaxMind\\Db\\": "src/MaxMind/Db"
  2009. }
  2010. },
  2011. "notification-url": "https://packagist.org/downloads/",
  2012. "license": [
  2013. "Apache-2.0"
  2014. ],
  2015. "authors": [
  2016. {
  2017. "name": "Gregory J. Oschwald",
  2018. "email": "goschwald@maxmind.com",
  2019. "homepage": "https://www.maxmind.com/"
  2020. }
  2021. ],
  2022. "description": "MaxMind DB Reader API",
  2023. "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
  2024. "keywords": [
  2025. "database",
  2026. "geoip",
  2027. "geoip2",
  2028. "geolocation",
  2029. "maxmind"
  2030. ],
  2031. "time": "2020-10-01T17:30:21+00:00"
  2032. },
  2033. {
  2034. "name": "maxmind/web-service-common",
  2035. "version": "v0.8.0",
  2036. "source": {
  2037. "type": "git",
  2038. "url": "https://github.com/maxmind/web-service-common-php.git",
  2039. "reference": "ba67d9532cfaf499bd71774b8170d05df4f75fb7"
  2040. },
  2041. "dist": {
  2042. "type": "zip",
  2043. "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/ba67d9532cfaf499bd71774b8170d05df4f75fb7",
  2044. "reference": "ba67d9532cfaf499bd71774b8170d05df4f75fb7",
  2045. "shasum": ""
  2046. },
  2047. "require": {
  2048. "composer/ca-bundle": "^1.0.3",
  2049. "ext-curl": "*",
  2050. "ext-json": "*",
  2051. "php": ">=7.2"
  2052. },
  2053. "require-dev": {
  2054. "friendsofphp/php-cs-fixer": "2.*",
  2055. "phpunit/phpunit": "^8.0 || ^9.0",
  2056. "squizlabs/php_codesniffer": "3.*"
  2057. },
  2058. "type": "library",
  2059. "autoload": {
  2060. "psr-4": {
  2061. "MaxMind\\Exception\\": "src/Exception",
  2062. "MaxMind\\WebService\\": "src/WebService"
  2063. }
  2064. },
  2065. "notification-url": "https://packagist.org/downloads/",
  2066. "license": [
  2067. "Apache-2.0"
  2068. ],
  2069. "authors": [
  2070. {
  2071. "name": "Gregory Oschwald",
  2072. "email": "goschwald@maxmind.com"
  2073. }
  2074. ],
  2075. "description": "Internal MaxMind Web Service API",
  2076. "homepage": "https://github.com/maxmind/web-service-common-php",
  2077. "time": "2020-10-01T15:28:36+00:00"
  2078. },
  2079. {
  2080. "name": "mews/captcha",
  2081. "version": "3.2.1",
  2082. "source": {
  2083. "type": "git",
  2084. "url": "https://github.com/mewebstudio/captcha.git",
  2085. "reference": "0bf387835ad5ae1b3e02ffda0f8f9f8da3d54a60"
  2086. },
  2087. "dist": {
  2088. "type": "zip",
  2089. "url": "https://api.github.com/repos/mewebstudio/captcha/zipball/0bf387835ad5ae1b3e02ffda0f8f9f8da3d54a60",
  2090. "reference": "0bf387835ad5ae1b3e02ffda0f8f9f8da3d54a60",
  2091. "shasum": ""
  2092. },
  2093. "require": {
  2094. "ext-gd": "*",
  2095. "illuminate/config": "~5|^6|^7|^8",
  2096. "illuminate/filesystem": "~5|^6|^7|^8",
  2097. "illuminate/hashing": "~5|^6|^7|^8",
  2098. "illuminate/session": "~5|^6|^7|^8",
  2099. "illuminate/support": "~5|^6|^7|^8",
  2100. "intervention/image": "~2.5",
  2101. "php": "^7.2"
  2102. },
  2103. "require-dev": {
  2104. "mockery/mockery": "^1.0",
  2105. "phpunit/phpunit": "^8.5"
  2106. },
  2107. "type": "package",
  2108. "extra": {
  2109. "laravel": {
  2110. "providers": [
  2111. "Mews\\Captcha\\CaptchaServiceProvider"
  2112. ],
  2113. "aliases": {
  2114. "Captcha": "Mews\\Captcha\\Facades\\Captcha"
  2115. }
  2116. }
  2117. },
  2118. "autoload": {
  2119. "psr-4": {
  2120. "Mews\\Captcha\\": "src/"
  2121. },
  2122. "files": [
  2123. "src/helpers.php"
  2124. ]
  2125. },
  2126. "notification-url": "https://packagist.org/downloads/",
  2127. "license": [
  2128. "MIT"
  2129. ],
  2130. "authors": [
  2131. {
  2132. "name": "Muharrem ERİN",
  2133. "email": "me@mewebstudio.com",
  2134. "homepage": "https://github.com/mewebstudio",
  2135. "role": "Developer"
  2136. }
  2137. ],
  2138. "description": "Laravel 5 & 6 Captcha Package",
  2139. "homepage": "https://github.com/mewebstudio/captcha",
  2140. "keywords": [
  2141. "captcha",
  2142. "laravel5 Security",
  2143. "laravel6 Captcha",
  2144. "laravel6 Security"
  2145. ],
  2146. "time": "2020-09-30T07:04:15+00:00"
  2147. },
  2148. {
  2149. "name": "mews/purifier",
  2150. "version": "3.3.0",
  2151. "source": {
  2152. "type": "git",
  2153. "url": "https://github.com/mewebstudio/Purifier.git",
  2154. "reference": "da76c8705550d549a8723ffe7368c0f5554652a1"
  2155. },
  2156. "dist": {
  2157. "type": "zip",
  2158. "url": "https://api.github.com/repos/mewebstudio/Purifier/zipball/da76c8705550d549a8723ffe7368c0f5554652a1",
  2159. "reference": "da76c8705550d549a8723ffe7368c0f5554652a1",
  2160. "shasum": ""
  2161. },
  2162. "require": {
  2163. "ezyang/htmlpurifier": "4.13.*",
  2164. "illuminate/config": "^5.8|^6.0|^7.0|^8.0",
  2165. "illuminate/filesystem": "^5.8|^6.0|^7.0|^8.0",
  2166. "illuminate/support": "^5.8|^6.0|^7.0|^8.0",
  2167. "php": "^7.2"
  2168. },
  2169. "require-dev": {
  2170. "graham-campbell/testbench": "^3.2|^5.5.1",
  2171. "mockery/mockery": "^1.0",
  2172. "phpunit/phpunit": "^8.0|^9.0"
  2173. },
  2174. "suggest": {
  2175. "laravel/framework": "To test the Laravel bindings",
  2176. "laravel/lumen-framework": "To test the Lumen bindings"
  2177. },
  2178. "type": "package",
  2179. "extra": {
  2180. "laravel": {
  2181. "providers": [
  2182. "Mews\\Purifier\\PurifierServiceProvider"
  2183. ],
  2184. "aliases": {
  2185. "Purifier": "Mews\\Purifier\\Facades\\Purifier"
  2186. }
  2187. }
  2188. },
  2189. "autoload": {
  2190. "psr-4": {
  2191. "Mews\\Purifier\\": "src/"
  2192. },
  2193. "files": [
  2194. "src/helpers.php"
  2195. ]
  2196. },
  2197. "notification-url": "https://packagist.org/downloads/",
  2198. "license": [
  2199. "MIT"
  2200. ],
  2201. "authors": [
  2202. {
  2203. "name": "Muharrem ERİN",
  2204. "email": "me@mewebstudio.com",
  2205. "homepage": "https://github.com/mewebstudio",
  2206. "role": "Developer"
  2207. }
  2208. ],
  2209. "description": "Laravel 5/6/7 HtmlPurifier Package",
  2210. "homepage": "https://github.com/mewebstudio/purifier",
  2211. "keywords": [
  2212. "Purifier",
  2213. "htmlpurifier",
  2214. "laravel5 HtmlPurifier",
  2215. "laravel5 Purifier",
  2216. "laravel5 Security",
  2217. "laravel6 HtmlPurifier",
  2218. "laravel6 Purifier",
  2219. "laravel6 Security",
  2220. "security",
  2221. "xss"
  2222. ],
  2223. "time": "2020-09-10T22:30:34+00:00"
  2224. },
  2225. {
  2226. "name": "mobiledetect/mobiledetectlib",
  2227. "version": "2.8.34",
  2228. "source": {
  2229. "type": "git",
  2230. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  2231. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b"
  2232. },
  2233. "dist": {
  2234. "type": "zip",
  2235. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  2236. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  2237. "shasum": ""
  2238. },
  2239. "require": {
  2240. "php": ">=5.0.0"
  2241. },
  2242. "require-dev": {
  2243. "phpunit/phpunit": "~4.8.35||~5.7"
  2244. },
  2245. "type": "library",
  2246. "autoload": {
  2247. "classmap": [
  2248. "Mobile_Detect.php"
  2249. ],
  2250. "psr-0": {
  2251. "Detection": "namespaced/"
  2252. }
  2253. },
  2254. "notification-url": "https://packagist.org/downloads/",
  2255. "license": [
  2256. "MIT"
  2257. ],
  2258. "authors": [
  2259. {
  2260. "name": "Serban Ghita",
  2261. "email": "serbanghita@gmail.com",
  2262. "homepage": "http://mobiledetect.net",
  2263. "role": "Developer"
  2264. }
  2265. ],
  2266. "description": "Mobile_Detect is a lightweight PHP class for detecting mobile devices. It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.",
  2267. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  2268. "keywords": [
  2269. "detect mobile devices",
  2270. "mobile",
  2271. "mobile detect",
  2272. "mobile detector",
  2273. "php mobile detect"
  2274. ],
  2275. "time": "2019-09-18T18:44:20+00:00"
  2276. },
  2277. {
  2278. "name": "monolog/monolog",
  2279. "version": "2.1.1",
  2280. "source": {
  2281. "type": "git",
  2282. "url": "https://github.com/Seldaek/monolog.git",
  2283. "reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5"
  2284. },
  2285. "dist": {
  2286. "type": "zip",
  2287. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f9eee5cec93dfb313a38b6b288741e84e53f02d5",
  2288. "reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5",
  2289. "shasum": ""
  2290. },
  2291. "require": {
  2292. "php": ">=7.2",
  2293. "psr/log": "^1.0.1"
  2294. },
  2295. "provide": {
  2296. "psr/log-implementation": "1.0.0"
  2297. },
  2298. "require-dev": {
  2299. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2300. "doctrine/couchdb": "~1.0@dev",
  2301. "elasticsearch/elasticsearch": "^6.0",
  2302. "graylog2/gelf-php": "^1.4.2",
  2303. "php-amqplib/php-amqplib": "~2.4",
  2304. "php-console/php-console": "^3.1.3",
  2305. "php-parallel-lint/php-parallel-lint": "^1.0",
  2306. "phpspec/prophecy": "^1.6.1",
  2307. "phpunit/phpunit": "^8.5",
  2308. "predis/predis": "^1.1",
  2309. "rollbar/rollbar": "^1.3",
  2310. "ruflin/elastica": ">=0.90 <3.0",
  2311. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2312. },
  2313. "suggest": {
  2314. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2315. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2316. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2317. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2318. "ext-mbstring": "Allow to work properly with unicode symbols",
  2319. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2320. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2321. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2322. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2323. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2324. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2325. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2326. },
  2327. "type": "library",
  2328. "extra": {
  2329. "branch-alias": {
  2330. "dev-master": "2.x-dev"
  2331. }
  2332. },
  2333. "autoload": {
  2334. "psr-4": {
  2335. "Monolog\\": "src/Monolog"
  2336. }
  2337. },
  2338. "notification-url": "https://packagist.org/downloads/",
  2339. "license": [
  2340. "MIT"
  2341. ],
  2342. "authors": [
  2343. {
  2344. "name": "Jordi Boggiano",
  2345. "email": "j.boggiano@seld.be",
  2346. "homepage": "http://seld.be"
  2347. }
  2348. ],
  2349. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2350. "homepage": "http://github.com/Seldaek/monolog",
  2351. "keywords": [
  2352. "log",
  2353. "logging",
  2354. "psr-3"
  2355. ],
  2356. "funding": [
  2357. {
  2358. "url": "https://github.com/Seldaek",
  2359. "type": "github"
  2360. },
  2361. {
  2362. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2363. "type": "tidelift"
  2364. }
  2365. ],
  2366. "time": "2020-07-23T08:41:23+00:00"
  2367. },
  2368. {
  2369. "name": "myclabs/php-enum",
  2370. "version": "1.7.6",
  2371. "source": {
  2372. "type": "git",
  2373. "url": "https://github.com/myclabs/php-enum.git",
  2374. "reference": "5f36467c7a87e20fbdc51e524fd8f9d1de80187c"
  2375. },
  2376. "dist": {
  2377. "type": "zip",
  2378. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/5f36467c7a87e20fbdc51e524fd8f9d1de80187c",
  2379. "reference": "5f36467c7a87e20fbdc51e524fd8f9d1de80187c",
  2380. "shasum": ""
  2381. },
  2382. "require": {
  2383. "ext-json": "*",
  2384. "php": ">=7.1"
  2385. },
  2386. "require-dev": {
  2387. "phpunit/phpunit": "^7",
  2388. "squizlabs/php_codesniffer": "1.*",
  2389. "vimeo/psalm": "^3.8"
  2390. },
  2391. "type": "library",
  2392. "autoload": {
  2393. "psr-4": {
  2394. "MyCLabs\\Enum\\": "src/"
  2395. }
  2396. },
  2397. "notification-url": "https://packagist.org/downloads/",
  2398. "license": [
  2399. "MIT"
  2400. ],
  2401. "authors": [
  2402. {
  2403. "name": "PHP Enum contributors",
  2404. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2405. }
  2406. ],
  2407. "description": "PHP Enum implementation",
  2408. "homepage": "http://github.com/myclabs/php-enum",
  2409. "keywords": [
  2410. "enum"
  2411. ],
  2412. "time": "2020-02-14T08:15:52+00:00"
  2413. },
  2414. {
  2415. "name": "nesbot/carbon",
  2416. "version": "2.40.1",
  2417. "source": {
  2418. "type": "git",
  2419. "url": "https://github.com/briannesbitt/Carbon.git",
  2420. "reference": "d9a76d8b7eb0f97cf3a82529393245212f40ba3b"
  2421. },
  2422. "dist": {
  2423. "type": "zip",
  2424. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/d9a76d8b7eb0f97cf3a82529393245212f40ba3b",
  2425. "reference": "d9a76d8b7eb0f97cf3a82529393245212f40ba3b",
  2426. "shasum": ""
  2427. },
  2428. "require": {
  2429. "ext-json": "*",
  2430. "php": "^7.1.8 || ^8.0",
  2431. "symfony/polyfill-mbstring": "^1.0",
  2432. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  2433. },
  2434. "require-dev": {
  2435. "doctrine/orm": "^2.7",
  2436. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  2437. "kylekatarnls/multi-tester": "^2.0",
  2438. "phpmd/phpmd": "^2.9",
  2439. "phpstan/extension-installer": "^1.0",
  2440. "phpstan/phpstan": "^0.12.35",
  2441. "phpunit/phpunit": "^7.5 || ^8.0",
  2442. "squizlabs/php_codesniffer": "^3.4"
  2443. },
  2444. "bin": [
  2445. "bin/carbon"
  2446. ],
  2447. "type": "library",
  2448. "extra": {
  2449. "branch-alias": {
  2450. "dev-master": "2.x-dev",
  2451. "dev-3.x": "3.x-dev"
  2452. },
  2453. "laravel": {
  2454. "providers": [
  2455. "Carbon\\Laravel\\ServiceProvider"
  2456. ]
  2457. },
  2458. "phpstan": {
  2459. "includes": [
  2460. "extension.neon"
  2461. ]
  2462. }
  2463. },
  2464. "autoload": {
  2465. "psr-4": {
  2466. "Carbon\\": "src/Carbon/"
  2467. }
  2468. },
  2469. "notification-url": "https://packagist.org/downloads/",
  2470. "license": [
  2471. "MIT"
  2472. ],
  2473. "authors": [
  2474. {
  2475. "name": "Brian Nesbitt",
  2476. "email": "brian@nesbot.com",
  2477. "homepage": "http://nesbot.com"
  2478. },
  2479. {
  2480. "name": "kylekatarnls",
  2481. "homepage": "http://github.com/kylekatarnls"
  2482. }
  2483. ],
  2484. "description": "An API extension for DateTime that supports 281 different languages.",
  2485. "homepage": "http://carbon.nesbot.com",
  2486. "keywords": [
  2487. "date",
  2488. "datetime",
  2489. "time"
  2490. ],
  2491. "funding": [
  2492. {
  2493. "url": "https://opencollective.com/Carbon",
  2494. "type": "open_collective"
  2495. },
  2496. {
  2497. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  2498. "type": "tidelift"
  2499. }
  2500. ],
  2501. "time": "2020-09-23T08:17:37+00:00"
  2502. },
  2503. {
  2504. "name": "nikic/php-parser",
  2505. "version": "v4.10.2",
  2506. "source": {
  2507. "type": "git",
  2508. "url": "https://github.com/nikic/PHP-Parser.git",
  2509. "reference": "658f1be311a230e0907f5dfe0213742aff0596de"
  2510. },
  2511. "dist": {
  2512. "type": "zip",
  2513. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/658f1be311a230e0907f5dfe0213742aff0596de",
  2514. "reference": "658f1be311a230e0907f5dfe0213742aff0596de",
  2515. "shasum": ""
  2516. },
  2517. "require": {
  2518. "ext-tokenizer": "*",
  2519. "php": ">=7.0"
  2520. },
  2521. "require-dev": {
  2522. "ircmaxell/php-yacc": "^0.0.7",
  2523. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  2524. },
  2525. "bin": [
  2526. "bin/php-parse"
  2527. ],
  2528. "type": "library",
  2529. "extra": {
  2530. "branch-alias": {
  2531. "dev-master": "4.9-dev"
  2532. }
  2533. },
  2534. "autoload": {
  2535. "psr-4": {
  2536. "PhpParser\\": "lib/PhpParser"
  2537. }
  2538. },
  2539. "notification-url": "https://packagist.org/downloads/",
  2540. "license": [
  2541. "BSD-3-Clause"
  2542. ],
  2543. "authors": [
  2544. {
  2545. "name": "Nikita Popov"
  2546. }
  2547. ],
  2548. "description": "A PHP parser written in PHP",
  2549. "keywords": [
  2550. "parser",
  2551. "php"
  2552. ],
  2553. "time": "2020-09-26T10:30:38+00:00"
  2554. },
  2555. {
  2556. "name": "openlss/lib-array2xml",
  2557. "version": "1.0.0",
  2558. "source": {
  2559. "type": "git",
  2560. "url": "https://github.com/nullivex/lib-array2xml.git",
  2561. "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90"
  2562. },
  2563. "dist": {
  2564. "type": "zip",
  2565. "url": "https://api.github.com/repos/nullivex/lib-array2xml/zipball/a91f18a8dfc69ffabe5f9b068bc39bb202c81d90",
  2566. "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90",
  2567. "shasum": ""
  2568. },
  2569. "require": {
  2570. "php": ">=5.3.2"
  2571. },
  2572. "type": "library",
  2573. "autoload": {
  2574. "psr-0": {
  2575. "LSS": ""
  2576. }
  2577. },
  2578. "notification-url": "https://packagist.org/downloads/",
  2579. "license": [
  2580. "Apache-2.0"
  2581. ],
  2582. "authors": [
  2583. {
  2584. "name": "Bryan Tong",
  2585. "email": "bryan@nullivex.com",
  2586. "homepage": "https://www.nullivex.com"
  2587. },
  2588. {
  2589. "name": "Tony Butler",
  2590. "email": "spudz76@gmail.com",
  2591. "homepage": "https://www.nullivex.com"
  2592. }
  2593. ],
  2594. "description": "Array2XML conversion library credit to lalit.org",
  2595. "homepage": "https://www.nullivex.com",
  2596. "keywords": [
  2597. "array",
  2598. "array conversion",
  2599. "xml",
  2600. "xml conversion"
  2601. ],
  2602. "time": "2019-03-29T20:06:56+00:00"
  2603. },
  2604. {
  2605. "name": "opis/closure",
  2606. "version": "3.5.7",
  2607. "source": {
  2608. "type": "git",
  2609. "url": "https://github.com/opis/closure.git",
  2610. "reference": "4531e53afe2fc660403e76fb7644e95998bff7bf"
  2611. },
  2612. "dist": {
  2613. "type": "zip",
  2614. "url": "https://api.github.com/repos/opis/closure/zipball/4531e53afe2fc660403e76fb7644e95998bff7bf",
  2615. "reference": "4531e53afe2fc660403e76fb7644e95998bff7bf",
  2616. "shasum": ""
  2617. },
  2618. "require": {
  2619. "php": "^5.4 || ^7.0"
  2620. },
  2621. "require-dev": {
  2622. "jeremeamia/superclosure": "^2.0",
  2623. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  2624. },
  2625. "type": "library",
  2626. "extra": {
  2627. "branch-alias": {
  2628. "dev-master": "3.5.x-dev"
  2629. }
  2630. },
  2631. "autoload": {
  2632. "psr-4": {
  2633. "Opis\\Closure\\": "src/"
  2634. },
  2635. "files": [
  2636. "functions.php"
  2637. ]
  2638. },
  2639. "notification-url": "https://packagist.org/downloads/",
  2640. "license": [
  2641. "MIT"
  2642. ],
  2643. "authors": [
  2644. {
  2645. "name": "Marius Sarca",
  2646. "email": "marius.sarca@gmail.com"
  2647. },
  2648. {
  2649. "name": "Sorin Sarca",
  2650. "email": "sarca_sorin@hotmail.com"
  2651. }
  2652. ],
  2653. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  2654. "homepage": "https://opis.io/closure",
  2655. "keywords": [
  2656. "anonymous functions",
  2657. "closure",
  2658. "function",
  2659. "serializable",
  2660. "serialization",
  2661. "serialize"
  2662. ],
  2663. "time": "2020-09-06T17:02:15+00:00"
  2664. },
  2665. {
  2666. "name": "overtrue/laravel-lang",
  2667. "version": "4.1.1",
  2668. "source": {
  2669. "type": "git",
  2670. "url": "https://github.com/overtrue/laravel-lang.git",
  2671. "reference": "8db02bb782ff3f27198740a7a5f47b8934f949ea"
  2672. },
  2673. "dist": {
  2674. "type": "zip",
  2675. "url": "https://api.github.com/repos/overtrue/laravel-lang/zipball/8db02bb782ff3f27198740a7a5f47b8934f949ea",
  2676. "reference": "8db02bb782ff3f27198740a7a5f47b8934f949ea",
  2677. "shasum": ""
  2678. },
  2679. "require": {
  2680. "ext-json": "*",
  2681. "laravel-lang/lang": "~7.0",
  2682. "symfony/process": "^5.0.0"
  2683. },
  2684. "require-dev": {
  2685. "laravel/framework": "~8.1"
  2686. },
  2687. "type": "library",
  2688. "extra": {
  2689. "laravel": {
  2690. "providers": [
  2691. "Overtrue\\LaravelLang\\TranslationServiceProvider"
  2692. ]
  2693. }
  2694. },
  2695. "autoload": {
  2696. "psr-4": {
  2697. "Overtrue\\LaravelLang\\": "src/"
  2698. },
  2699. "files": [
  2700. "src/helpers.php"
  2701. ]
  2702. },
  2703. "notification-url": "https://packagist.org/downloads/",
  2704. "license": [
  2705. "MIT"
  2706. ],
  2707. "authors": [
  2708. {
  2709. "name": "overtrue",
  2710. "email": "anzhengchao@gmail.com"
  2711. }
  2712. ],
  2713. "description": "List of 75 languages for Laravel 4, 5, 6 and 7",
  2714. "keywords": [
  2715. "i18n",
  2716. "languages",
  2717. "laravel",
  2718. "locale",
  2719. "overtrue"
  2720. ],
  2721. "funding": [
  2722. {
  2723. "url": "https://www.patreon.com/overtrue",
  2724. "type": "patreon"
  2725. }
  2726. ],
  2727. "time": "2020-09-16T03:00:55+00:00"
  2728. },
  2729. {
  2730. "name": "paragonie/random_compat",
  2731. "version": "v9.99.99",
  2732. "source": {
  2733. "type": "git",
  2734. "url": "https://github.com/paragonie/random_compat.git",
  2735. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  2736. },
  2737. "dist": {
  2738. "type": "zip",
  2739. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  2740. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  2741. "shasum": ""
  2742. },
  2743. "require": {
  2744. "php": "^7"
  2745. },
  2746. "require-dev": {
  2747. "phpunit/phpunit": "4.*|5.*",
  2748. "vimeo/psalm": "^1"
  2749. },
  2750. "suggest": {
  2751. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2752. },
  2753. "type": "library",
  2754. "notification-url": "https://packagist.org/downloads/",
  2755. "license": [
  2756. "MIT"
  2757. ],
  2758. "authors": [
  2759. {
  2760. "name": "Paragon Initiative Enterprises",
  2761. "email": "security@paragonie.com",
  2762. "homepage": "https://paragonie.com"
  2763. }
  2764. ],
  2765. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2766. "keywords": [
  2767. "csprng",
  2768. "polyfill",
  2769. "pseudorandom",
  2770. "random"
  2771. ],
  2772. "time": "2018-07-02T15:55:56+00:00"
  2773. },
  2774. {
  2775. "name": "phpoffice/phpspreadsheet",
  2776. "version": "1.14.1",
  2777. "source": {
  2778. "type": "git",
  2779. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  2780. "reference": "2383aad5689778470491581442aab38cec41bf1d"
  2781. },
  2782. "dist": {
  2783. "type": "zip",
  2784. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/2383aad5689778470491581442aab38cec41bf1d",
  2785. "reference": "2383aad5689778470491581442aab38cec41bf1d",
  2786. "shasum": ""
  2787. },
  2788. "require": {
  2789. "ext-ctype": "*",
  2790. "ext-dom": "*",
  2791. "ext-fileinfo": "*",
  2792. "ext-gd": "*",
  2793. "ext-iconv": "*",
  2794. "ext-libxml": "*",
  2795. "ext-mbstring": "*",
  2796. "ext-simplexml": "*",
  2797. "ext-xml": "*",
  2798. "ext-xmlreader": "*",
  2799. "ext-xmlwriter": "*",
  2800. "ext-zip": "*",
  2801. "ext-zlib": "*",
  2802. "maennchen/zipstream-php": "^2.1",
  2803. "markbaker/complex": "^1.4",
  2804. "markbaker/matrix": "^1.2",
  2805. "php": "^7.2",
  2806. "psr/http-client": "^1.0",
  2807. "psr/http-factory": "^1.0",
  2808. "psr/simple-cache": "^1.0"
  2809. },
  2810. "require-dev": {
  2811. "dompdf/dompdf": "^0.8.5",
  2812. "friendsofphp/php-cs-fixer": "^2.16",
  2813. "jpgraph/jpgraph": "^4.0",
  2814. "mpdf/mpdf": "^8.0",
  2815. "phpcompatibility/php-compatibility": "^9.3",
  2816. "phpunit/phpunit": "^8.5",
  2817. "squizlabs/php_codesniffer": "^3.5",
  2818. "tecnickcom/tcpdf": "^6.3"
  2819. },
  2820. "suggest": {
  2821. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  2822. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  2823. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  2824. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  2825. },
  2826. "type": "library",
  2827. "autoload": {
  2828. "psr-4": {
  2829. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  2830. }
  2831. },
  2832. "notification-url": "https://packagist.org/downloads/",
  2833. "license": [
  2834. "MIT"
  2835. ],
  2836. "authors": [
  2837. {
  2838. "name": "Maarten Balliauw",
  2839. "homepage": "https://blog.maartenballiauw.be"
  2840. },
  2841. {
  2842. "name": "Mark Baker",
  2843. "homepage": "https://markbakeruk.net"
  2844. },
  2845. {
  2846. "name": "Franck Lefevre",
  2847. "homepage": "https://rootslabs.net"
  2848. },
  2849. {
  2850. "name": "Erik Tilt"
  2851. },
  2852. {
  2853. "name": "Adrien Crivelli"
  2854. }
  2855. ],
  2856. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  2857. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  2858. "keywords": [
  2859. "OpenXML",
  2860. "excel",
  2861. "gnumeric",
  2862. "ods",
  2863. "php",
  2864. "spreadsheet",
  2865. "xls",
  2866. "xlsx"
  2867. ],
  2868. "time": "2020-07-19T09:51:35+00:00"
  2869. },
  2870. {
  2871. "name": "phpoption/phpoption",
  2872. "version": "1.7.5",
  2873. "source": {
  2874. "type": "git",
  2875. "url": "https://github.com/schmittjoh/php-option.git",
  2876. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  2877. },
  2878. "dist": {
  2879. "type": "zip",
  2880. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  2881. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  2882. "shasum": ""
  2883. },
  2884. "require": {
  2885. "php": "^5.5.9 || ^7.0 || ^8.0"
  2886. },
  2887. "require-dev": {
  2888. "bamarni/composer-bin-plugin": "^1.4.1",
  2889. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  2890. },
  2891. "type": "library",
  2892. "extra": {
  2893. "branch-alias": {
  2894. "dev-master": "1.7-dev"
  2895. }
  2896. },
  2897. "autoload": {
  2898. "psr-4": {
  2899. "PhpOption\\": "src/PhpOption/"
  2900. }
  2901. },
  2902. "notification-url": "https://packagist.org/downloads/",
  2903. "license": [
  2904. "Apache-2.0"
  2905. ],
  2906. "authors": [
  2907. {
  2908. "name": "Johannes M. Schmitt",
  2909. "email": "schmittjoh@gmail.com"
  2910. },
  2911. {
  2912. "name": "Graham Campbell",
  2913. "email": "graham@alt-three.com"
  2914. }
  2915. ],
  2916. "description": "Option Type for PHP",
  2917. "keywords": [
  2918. "language",
  2919. "option",
  2920. "php",
  2921. "type"
  2922. ],
  2923. "funding": [
  2924. {
  2925. "url": "https://github.com/GrahamCampbell",
  2926. "type": "github"
  2927. },
  2928. {
  2929. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  2930. "type": "tidelift"
  2931. }
  2932. ],
  2933. "time": "2020-07-20T17:29:33+00:00"
  2934. },
  2935. {
  2936. "name": "psr/container",
  2937. "version": "1.0.0",
  2938. "source": {
  2939. "type": "git",
  2940. "url": "https://github.com/php-fig/container.git",
  2941. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  2942. },
  2943. "dist": {
  2944. "type": "zip",
  2945. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2946. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2947. "shasum": ""
  2948. },
  2949. "require": {
  2950. "php": ">=5.3.0"
  2951. },
  2952. "type": "library",
  2953. "extra": {
  2954. "branch-alias": {
  2955. "dev-master": "1.0.x-dev"
  2956. }
  2957. },
  2958. "autoload": {
  2959. "psr-4": {
  2960. "Psr\\Container\\": "src/"
  2961. }
  2962. },
  2963. "notification-url": "https://packagist.org/downloads/",
  2964. "license": [
  2965. "MIT"
  2966. ],
  2967. "authors": [
  2968. {
  2969. "name": "PHP-FIG",
  2970. "homepage": "http://www.php-fig.org/"
  2971. }
  2972. ],
  2973. "description": "Common Container Interface (PHP FIG PSR-11)",
  2974. "homepage": "https://github.com/php-fig/container",
  2975. "keywords": [
  2976. "PSR-11",
  2977. "container",
  2978. "container-interface",
  2979. "container-interop",
  2980. "psr"
  2981. ],
  2982. "time": "2017-02-14T16:28:37+00:00"
  2983. },
  2984. {
  2985. "name": "psr/event-dispatcher",
  2986. "version": "1.0.0",
  2987. "source": {
  2988. "type": "git",
  2989. "url": "https://github.com/php-fig/event-dispatcher.git",
  2990. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2991. },
  2992. "dist": {
  2993. "type": "zip",
  2994. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2995. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2996. "shasum": ""
  2997. },
  2998. "require": {
  2999. "php": ">=7.2.0"
  3000. },
  3001. "type": "library",
  3002. "extra": {
  3003. "branch-alias": {
  3004. "dev-master": "1.0.x-dev"
  3005. }
  3006. },
  3007. "autoload": {
  3008. "psr-4": {
  3009. "Psr\\EventDispatcher\\": "src/"
  3010. }
  3011. },
  3012. "notification-url": "https://packagist.org/downloads/",
  3013. "license": [
  3014. "MIT"
  3015. ],
  3016. "authors": [
  3017. {
  3018. "name": "PHP-FIG",
  3019. "homepage": "http://www.php-fig.org/"
  3020. }
  3021. ],
  3022. "description": "Standard interfaces for event handling.",
  3023. "keywords": [
  3024. "events",
  3025. "psr",
  3026. "psr-14"
  3027. ],
  3028. "time": "2019-01-08T18:20:26+00:00"
  3029. },
  3030. {
  3031. "name": "psr/http-client",
  3032. "version": "1.0.1",
  3033. "source": {
  3034. "type": "git",
  3035. "url": "https://github.com/php-fig/http-client.git",
  3036. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3037. },
  3038. "dist": {
  3039. "type": "zip",
  3040. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3041. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3042. "shasum": ""
  3043. },
  3044. "require": {
  3045. "php": "^7.0 || ^8.0",
  3046. "psr/http-message": "^1.0"
  3047. },
  3048. "type": "library",
  3049. "extra": {
  3050. "branch-alias": {
  3051. "dev-master": "1.0.x-dev"
  3052. }
  3053. },
  3054. "autoload": {
  3055. "psr-4": {
  3056. "Psr\\Http\\Client\\": "src/"
  3057. }
  3058. },
  3059. "notification-url": "https://packagist.org/downloads/",
  3060. "license": [
  3061. "MIT"
  3062. ],
  3063. "authors": [
  3064. {
  3065. "name": "PHP-FIG",
  3066. "homepage": "http://www.php-fig.org/"
  3067. }
  3068. ],
  3069. "description": "Common interface for HTTP clients",
  3070. "homepage": "https://github.com/php-fig/http-client",
  3071. "keywords": [
  3072. "http",
  3073. "http-client",
  3074. "psr",
  3075. "psr-18"
  3076. ],
  3077. "time": "2020-06-29T06:28:15+00:00"
  3078. },
  3079. {
  3080. "name": "psr/http-factory",
  3081. "version": "1.0.1",
  3082. "source": {
  3083. "type": "git",
  3084. "url": "https://github.com/php-fig/http-factory.git",
  3085. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  3086. },
  3087. "dist": {
  3088. "type": "zip",
  3089. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3090. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3091. "shasum": ""
  3092. },
  3093. "require": {
  3094. "php": ">=7.0.0",
  3095. "psr/http-message": "^1.0"
  3096. },
  3097. "type": "library",
  3098. "extra": {
  3099. "branch-alias": {
  3100. "dev-master": "1.0.x-dev"
  3101. }
  3102. },
  3103. "autoload": {
  3104. "psr-4": {
  3105. "Psr\\Http\\Message\\": "src/"
  3106. }
  3107. },
  3108. "notification-url": "https://packagist.org/downloads/",
  3109. "license": [
  3110. "MIT"
  3111. ],
  3112. "authors": [
  3113. {
  3114. "name": "PHP-FIG",
  3115. "homepage": "http://www.php-fig.org/"
  3116. }
  3117. ],
  3118. "description": "Common interfaces for PSR-7 HTTP message factories",
  3119. "keywords": [
  3120. "factory",
  3121. "http",
  3122. "message",
  3123. "psr",
  3124. "psr-17",
  3125. "psr-7",
  3126. "request",
  3127. "response"
  3128. ],
  3129. "time": "2019-04-30T12:38:16+00:00"
  3130. },
  3131. {
  3132. "name": "psr/http-message",
  3133. "version": "1.0.1",
  3134. "source": {
  3135. "type": "git",
  3136. "url": "https://github.com/php-fig/http-message.git",
  3137. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3138. },
  3139. "dist": {
  3140. "type": "zip",
  3141. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3142. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3143. "shasum": ""
  3144. },
  3145. "require": {
  3146. "php": ">=5.3.0"
  3147. },
  3148. "type": "library",
  3149. "extra": {
  3150. "branch-alias": {
  3151. "dev-master": "1.0.x-dev"
  3152. }
  3153. },
  3154. "autoload": {
  3155. "psr-4": {
  3156. "Psr\\Http\\Message\\": "src/"
  3157. }
  3158. },
  3159. "notification-url": "https://packagist.org/downloads/",
  3160. "license": [
  3161. "MIT"
  3162. ],
  3163. "authors": [
  3164. {
  3165. "name": "PHP-FIG",
  3166. "homepage": "http://www.php-fig.org/"
  3167. }
  3168. ],
  3169. "description": "Common interface for HTTP messages",
  3170. "homepage": "https://github.com/php-fig/http-message",
  3171. "keywords": [
  3172. "http",
  3173. "http-message",
  3174. "psr",
  3175. "psr-7",
  3176. "request",
  3177. "response"
  3178. ],
  3179. "time": "2016-08-06T14:39:51+00:00"
  3180. },
  3181. {
  3182. "name": "psr/log",
  3183. "version": "1.1.3",
  3184. "source": {
  3185. "type": "git",
  3186. "url": "https://github.com/php-fig/log.git",
  3187. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  3188. },
  3189. "dist": {
  3190. "type": "zip",
  3191. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  3192. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  3193. "shasum": ""
  3194. },
  3195. "require": {
  3196. "php": ">=5.3.0"
  3197. },
  3198. "type": "library",
  3199. "extra": {
  3200. "branch-alias": {
  3201. "dev-master": "1.1.x-dev"
  3202. }
  3203. },
  3204. "autoload": {
  3205. "psr-4": {
  3206. "Psr\\Log\\": "Psr/Log/"
  3207. }
  3208. },
  3209. "notification-url": "https://packagist.org/downloads/",
  3210. "license": [
  3211. "MIT"
  3212. ],
  3213. "authors": [
  3214. {
  3215. "name": "PHP-FIG",
  3216. "homepage": "http://www.php-fig.org/"
  3217. }
  3218. ],
  3219. "description": "Common interface for logging libraries",
  3220. "homepage": "https://github.com/php-fig/log",
  3221. "keywords": [
  3222. "log",
  3223. "psr",
  3224. "psr-3"
  3225. ],
  3226. "time": "2020-03-23T09:12:05+00:00"
  3227. },
  3228. {
  3229. "name": "psr/simple-cache",
  3230. "version": "1.0.1",
  3231. "source": {
  3232. "type": "git",
  3233. "url": "https://github.com/php-fig/simple-cache.git",
  3234. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3235. },
  3236. "dist": {
  3237. "type": "zip",
  3238. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3239. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3240. "shasum": ""
  3241. },
  3242. "require": {
  3243. "php": ">=5.3.0"
  3244. },
  3245. "type": "library",
  3246. "extra": {
  3247. "branch-alias": {
  3248. "dev-master": "1.0.x-dev"
  3249. }
  3250. },
  3251. "autoload": {
  3252. "psr-4": {
  3253. "Psr\\SimpleCache\\": "src/"
  3254. }
  3255. },
  3256. "notification-url": "https://packagist.org/downloads/",
  3257. "license": [
  3258. "MIT"
  3259. ],
  3260. "authors": [
  3261. {
  3262. "name": "PHP-FIG",
  3263. "homepage": "http://www.php-fig.org/"
  3264. }
  3265. ],
  3266. "description": "Common interfaces for simple caching",
  3267. "keywords": [
  3268. "cache",
  3269. "caching",
  3270. "psr",
  3271. "psr-16",
  3272. "simple-cache"
  3273. ],
  3274. "time": "2017-10-23T01:57:42+00:00"
  3275. },
  3276. {
  3277. "name": "psy/psysh",
  3278. "version": "v0.10.4",
  3279. "source": {
  3280. "type": "git",
  3281. "url": "https://github.com/bobthecow/psysh.git",
  3282. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560"
  3283. },
  3284. "dist": {
  3285. "type": "zip",
  3286. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560",
  3287. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560",
  3288. "shasum": ""
  3289. },
  3290. "require": {
  3291. "dnoegel/php-xdg-base-dir": "0.1.*",
  3292. "ext-json": "*",
  3293. "ext-tokenizer": "*",
  3294. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  3295. "php": "^8.0 || ^7.0 || ^5.5.9",
  3296. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  3297. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  3298. },
  3299. "require-dev": {
  3300. "bamarni/composer-bin-plugin": "^1.2",
  3301. "hoa/console": "3.17.*"
  3302. },
  3303. "suggest": {
  3304. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3305. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3306. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  3307. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  3308. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  3309. },
  3310. "bin": [
  3311. "bin/psysh"
  3312. ],
  3313. "type": "library",
  3314. "extra": {
  3315. "branch-alias": {
  3316. "dev-master": "0.10.x-dev"
  3317. }
  3318. },
  3319. "autoload": {
  3320. "files": [
  3321. "src/functions.php"
  3322. ],
  3323. "psr-4": {
  3324. "Psy\\": "src/"
  3325. }
  3326. },
  3327. "notification-url": "https://packagist.org/downloads/",
  3328. "license": [
  3329. "MIT"
  3330. ],
  3331. "authors": [
  3332. {
  3333. "name": "Justin Hileman",
  3334. "email": "justin@justinhileman.info",
  3335. "homepage": "http://justinhileman.com"
  3336. }
  3337. ],
  3338. "description": "An interactive shell for modern PHP.",
  3339. "homepage": "http://psysh.org",
  3340. "keywords": [
  3341. "REPL",
  3342. "console",
  3343. "interactive",
  3344. "shell"
  3345. ],
  3346. "time": "2020-05-03T19:32:03+00:00"
  3347. },
  3348. {
  3349. "name": "ralouphie/getallheaders",
  3350. "version": "3.0.3",
  3351. "source": {
  3352. "type": "git",
  3353. "url": "https://github.com/ralouphie/getallheaders.git",
  3354. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3355. },
  3356. "dist": {
  3357. "type": "zip",
  3358. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3359. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3360. "shasum": ""
  3361. },
  3362. "require": {
  3363. "php": ">=5.6"
  3364. },
  3365. "require-dev": {
  3366. "php-coveralls/php-coveralls": "^2.1",
  3367. "phpunit/phpunit": "^5 || ^6.5"
  3368. },
  3369. "type": "library",
  3370. "autoload": {
  3371. "files": [
  3372. "src/getallheaders.php"
  3373. ]
  3374. },
  3375. "notification-url": "https://packagist.org/downloads/",
  3376. "license": [
  3377. "MIT"
  3378. ],
  3379. "authors": [
  3380. {
  3381. "name": "Ralph Khattar",
  3382. "email": "ralph.khattar@gmail.com"
  3383. }
  3384. ],
  3385. "description": "A polyfill for getallheaders.",
  3386. "time": "2019-03-08T08:55:37+00:00"
  3387. },
  3388. {
  3389. "name": "ramsey/collection",
  3390. "version": "1.1.1",
  3391. "source": {
  3392. "type": "git",
  3393. "url": "https://github.com/ramsey/collection.git",
  3394. "reference": "24d93aefb2cd786b7edd9f45b554aea20b28b9b1"
  3395. },
  3396. "dist": {
  3397. "type": "zip",
  3398. "url": "https://api.github.com/repos/ramsey/collection/zipball/24d93aefb2cd786b7edd9f45b554aea20b28b9b1",
  3399. "reference": "24d93aefb2cd786b7edd9f45b554aea20b28b9b1",
  3400. "shasum": ""
  3401. },
  3402. "require": {
  3403. "php": "^7.2 || ^8"
  3404. },
  3405. "require-dev": {
  3406. "captainhook/captainhook": "^5.3",
  3407. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  3408. "ergebnis/composer-normalize": "^2.6",
  3409. "fzaninotto/faker": "^1.5",
  3410. "hamcrest/hamcrest-php": "^2",
  3411. "jangregor/phpstan-prophecy": "^0.6",
  3412. "mockery/mockery": "^1.3",
  3413. "phpstan/extension-installer": "^1",
  3414. "phpstan/phpstan": "^0.12.32",
  3415. "phpstan/phpstan-mockery": "^0.12.5",
  3416. "phpstan/phpstan-phpunit": "^0.12.11",
  3417. "phpunit/phpunit": "^8.5",
  3418. "psy/psysh": "^0.10.4",
  3419. "slevomat/coding-standard": "^6.3",
  3420. "squizlabs/php_codesniffer": "^3.5",
  3421. "vimeo/psalm": "^3.12.2"
  3422. },
  3423. "type": "library",
  3424. "autoload": {
  3425. "psr-4": {
  3426. "Ramsey\\Collection\\": "src/"
  3427. }
  3428. },
  3429. "notification-url": "https://packagist.org/downloads/",
  3430. "license": [
  3431. "MIT"
  3432. ],
  3433. "authors": [
  3434. {
  3435. "name": "Ben Ramsey",
  3436. "email": "ben@benramsey.com",
  3437. "homepage": "https://benramsey.com"
  3438. }
  3439. ],
  3440. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  3441. "keywords": [
  3442. "array",
  3443. "collection",
  3444. "hash",
  3445. "map",
  3446. "queue",
  3447. "set"
  3448. ],
  3449. "support": {
  3450. "issues": "https://github.com/ramsey/collection/issues",
  3451. "source": "https://github.com/ramsey/collection/tree/1.1.1"
  3452. },
  3453. "funding": [
  3454. {
  3455. "url": "https://github.com/ramsey",
  3456. "type": "github"
  3457. }
  3458. ],
  3459. "time": "2020-09-10T20:58:17+00:00"
  3460. },
  3461. {
  3462. "name": "ramsey/uuid",
  3463. "version": "4.1.1",
  3464. "source": {
  3465. "type": "git",
  3466. "url": "https://github.com/ramsey/uuid.git",
  3467. "reference": "cd4032040a750077205918c86049aa0f43d22947"
  3468. },
  3469. "dist": {
  3470. "type": "zip",
  3471. "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
  3472. "reference": "cd4032040a750077205918c86049aa0f43d22947",
  3473. "shasum": ""
  3474. },
  3475. "require": {
  3476. "brick/math": "^0.8 || ^0.9",
  3477. "ext-json": "*",
  3478. "php": "^7.2 || ^8",
  3479. "ramsey/collection": "^1.0",
  3480. "symfony/polyfill-ctype": "^1.8"
  3481. },
  3482. "replace": {
  3483. "rhumsaa/uuid": "self.version"
  3484. },
  3485. "require-dev": {
  3486. "codeception/aspect-mock": "^3",
  3487. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  3488. "doctrine/annotations": "^1.8",
  3489. "goaop/framework": "^2",
  3490. "mockery/mockery": "^1.3",
  3491. "moontoast/math": "^1.1",
  3492. "paragonie/random-lib": "^2",
  3493. "php-mock/php-mock-mockery": "^1.3",
  3494. "php-mock/php-mock-phpunit": "^2.5",
  3495. "php-parallel-lint/php-parallel-lint": "^1.1",
  3496. "phpbench/phpbench": "^0.17.1",
  3497. "phpstan/extension-installer": "^1.0",
  3498. "phpstan/phpstan": "^0.12",
  3499. "phpstan/phpstan-mockery": "^0.12",
  3500. "phpstan/phpstan-phpunit": "^0.12",
  3501. "phpunit/phpunit": "^8.5",
  3502. "psy/psysh": "^0.10.0",
  3503. "slevomat/coding-standard": "^6.0",
  3504. "squizlabs/php_codesniffer": "^3.5",
  3505. "vimeo/psalm": "3.9.4"
  3506. },
  3507. "suggest": {
  3508. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  3509. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  3510. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  3511. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  3512. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  3513. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  3514. },
  3515. "type": "library",
  3516. "extra": {
  3517. "branch-alias": {
  3518. "dev-master": "4.x-dev"
  3519. }
  3520. },
  3521. "autoload": {
  3522. "psr-4": {
  3523. "Ramsey\\Uuid\\": "src/"
  3524. },
  3525. "files": [
  3526. "src/functions.php"
  3527. ]
  3528. },
  3529. "notification-url": "https://packagist.org/downloads/",
  3530. "license": [
  3531. "MIT"
  3532. ],
  3533. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  3534. "homepage": "https://github.com/ramsey/uuid",
  3535. "keywords": [
  3536. "guid",
  3537. "identifier",
  3538. "uuid"
  3539. ],
  3540. "funding": [
  3541. {
  3542. "url": "https://github.com/ramsey",
  3543. "type": "github"
  3544. }
  3545. ],
  3546. "time": "2020-08-18T17:17:46+00:00"
  3547. },
  3548. {
  3549. "name": "rap2hpoutre/laravel-log-viewer",
  3550. "version": "v1.7.0",
  3551. "source": {
  3552. "type": "git",
  3553. "url": "https://github.com/rap2hpoutre/laravel-log-viewer.git",
  3554. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a"
  3555. },
  3556. "dist": {
  3557. "type": "zip",
  3558. "url": "https://api.github.com/repos/rap2hpoutre/laravel-log-viewer/zipball/27392d29234b6ff38a456454558f4bcc40cc837a",
  3559. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a",
  3560. "shasum": ""
  3561. },
  3562. "require": {
  3563. "illuminate/support": "4.2.*|5.*|^6.0|^7.0|^8.0",
  3564. "php": ">=5.4.0"
  3565. },
  3566. "require-dev": {
  3567. "orchestra/testbench": "3.7.*",
  3568. "phpunit/phpunit": "^7"
  3569. },
  3570. "type": "laravel-package",
  3571. "extra": {
  3572. "laravel": {
  3573. "providers": [
  3574. "Rap2hpoutre\\LaravelLogViewer\\LaravelLogViewerServiceProvider"
  3575. ]
  3576. }
  3577. },
  3578. "autoload": {
  3579. "classmap": [
  3580. "src/controllers"
  3581. ],
  3582. "psr-0": {
  3583. "Rap2hpoutre\\LaravelLogViewer\\": "src/"
  3584. }
  3585. },
  3586. "notification-url": "https://packagist.org/downloads/",
  3587. "license": [
  3588. "MIT"
  3589. ],
  3590. "authors": [
  3591. {
  3592. "name": "rap2hpoutre",
  3593. "email": "raphaelht@gmail.com"
  3594. }
  3595. ],
  3596. "description": "A Laravel log reader",
  3597. "keywords": [
  3598. "laravel",
  3599. "log",
  3600. "log-reader",
  3601. "log-viewer",
  3602. "logging",
  3603. "lumen"
  3604. ],
  3605. "support": {
  3606. "issues": "https://github.com/rap2hpoutre/laravel-log-viewer/issues",
  3607. "source": "https://github.com/rap2hpoutre/laravel-log-viewer/tree/master"
  3608. },
  3609. "time": "2020-09-08T12:21:27+00:00"
  3610. },
  3611. {
  3612. "name": "riverslei/payment",
  3613. "version": "v5.1.0",
  3614. "source": {
  3615. "type": "git",
  3616. "url": "https://github.com/helei112g/payment.git",
  3617. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa"
  3618. },
  3619. "dist": {
  3620. "type": "zip",
  3621. "url": "https://api.github.com/repos/helei112g/payment/zipball/77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  3622. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  3623. "shasum": ""
  3624. },
  3625. "require": {
  3626. "ext-bcmath": "*",
  3627. "ext-json": "*",
  3628. "ext-mbstring": "*",
  3629. "ext-openssl": "*",
  3630. "ext-simplexml": "*",
  3631. "ext-xml": "*",
  3632. "guzzlehttp/guzzle": "~6.0",
  3633. "php": ">=7.0"
  3634. },
  3635. "require-dev": {
  3636. "codeception/codeception": "*"
  3637. },
  3638. "type": "library",
  3639. "autoload": {
  3640. "psr-4": {
  3641. "Payment\\": "src/"
  3642. }
  3643. },
  3644. "notification-url": "https://packagist.org/downloads/",
  3645. "license": [
  3646. "MIT"
  3647. ],
  3648. "authors": [
  3649. {
  3650. "name": "Leo",
  3651. "email": "dayugog@gmail.com",
  3652. "homepage": "https://dayutalk.cn"
  3653. }
  3654. ],
  3655. "description": "支付宝支付、微信支付、招商一网通支付php SDK。方便快速接入,最完整的开源支付 php sdk",
  3656. "homepage": "http://helei112g.github.io/payment",
  3657. "keywords": [
  3658. "alipay",
  3659. "weixin",
  3660. "一网通",
  3661. "微信支付",
  3662. "招商一网通",
  3663. "支付宝支付",
  3664. "集成支付接口SDK"
  3665. ],
  3666. "time": "2020-05-04T03:07:17+00:00"
  3667. },
  3668. {
  3669. "name": "spatie/laravel-permission",
  3670. "version": "3.17.0",
  3671. "source": {
  3672. "type": "git",
  3673. "url": "https://github.com/spatie/laravel-permission.git",
  3674. "reference": "35d40a45e49f5713f477823b571e05ef6a3a0394"
  3675. },
  3676. "dist": {
  3677. "type": "zip",
  3678. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/35d40a45e49f5713f477823b571e05ef6a3a0394",
  3679. "reference": "35d40a45e49f5713f477823b571e05ef6a3a0394",
  3680. "shasum": ""
  3681. },
  3682. "require": {
  3683. "illuminate/auth": "^5.8|^6.0|^7.0|^8.0",
  3684. "illuminate/container": "^5.8|^6.0|^7.0|^8.0",
  3685. "illuminate/contracts": "^5.8|^6.0|^7.0|^8.0",
  3686. "illuminate/database": "^5.8|^6.0|^7.0|^8.0",
  3687. "php": "^7.2.5"
  3688. },
  3689. "require-dev": {
  3690. "orchestra/testbench": "^3.8|^4.0|^5.0|^6.0",
  3691. "phpunit/phpunit": "^8.0|^9.0",
  3692. "predis/predis": "^1.1"
  3693. },
  3694. "type": "library",
  3695. "extra": {
  3696. "laravel": {
  3697. "providers": [
  3698. "Spatie\\Permission\\PermissionServiceProvider"
  3699. ]
  3700. }
  3701. },
  3702. "autoload": {
  3703. "psr-4": {
  3704. "Spatie\\Permission\\": "src"
  3705. },
  3706. "files": [
  3707. "src/helpers.php"
  3708. ]
  3709. },
  3710. "notification-url": "https://packagist.org/downloads/",
  3711. "license": [
  3712. "MIT"
  3713. ],
  3714. "authors": [
  3715. {
  3716. "name": "Freek Van der Herten",
  3717. "email": "freek@spatie.be",
  3718. "homepage": "https://spatie.be",
  3719. "role": "Developer"
  3720. }
  3721. ],
  3722. "description": "Permission handling for Laravel 5.8 and up",
  3723. "homepage": "https://github.com/spatie/laravel-permission",
  3724. "keywords": [
  3725. "acl",
  3726. "laravel",
  3727. "permission",
  3728. "permissions",
  3729. "rbac",
  3730. "roles",
  3731. "security",
  3732. "spatie"
  3733. ],
  3734. "funding": [
  3735. {
  3736. "url": "https://spatie.be/open-source/support-us",
  3737. "type": "custom"
  3738. }
  3739. ],
  3740. "time": "2020-09-16T16:47:18+00:00"
  3741. },
  3742. {
  3743. "name": "srmklive/paypal",
  3744. "version": "1.8.0",
  3745. "source": {
  3746. "type": "git",
  3747. "url": "https://github.com/srmklive/laravel-paypal.git",
  3748. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb"
  3749. },
  3750. "dist": {
  3751. "type": "zip",
  3752. "url": "https://api.github.com/repos/srmklive/laravel-paypal/zipball/0c2ae237577f62396d474674cb40f82825a41ffb",
  3753. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb",
  3754. "shasum": ""
  3755. },
  3756. "require": {
  3757. "guzzlehttp/guzzle": "~6.0|~7.0",
  3758. "illuminate/support": "~5.1|~5.2|~5.3|~5.4|~5.5|~5.6|~5.7|~5.8|~6.0|~7.0|~8.0",
  3759. "nesbot/carbon": "~1.0|~2.0"
  3760. },
  3761. "type": "library",
  3762. "extra": {
  3763. "laravel": {
  3764. "providers": [
  3765. "Srmklive\\PayPal\\Providers\\PayPalServiceProvider"
  3766. ],
  3767. "aliases": {
  3768. "PayPal": "Srmklive\\PayPal\\Facades\\PayPal"
  3769. }
  3770. }
  3771. },
  3772. "autoload": {
  3773. "psr-4": {
  3774. "Srmklive\\PayPal\\": "src/"
  3775. }
  3776. },
  3777. "notification-url": "https://packagist.org/downloads/",
  3778. "license": [
  3779. "MIT"
  3780. ],
  3781. "authors": [
  3782. {
  3783. "name": "Raza Mehdi",
  3784. "email": "srmk@outlook.com"
  3785. }
  3786. ],
  3787. "description": "Laravel plugin For Processing Payments Through Paypal Express Checkout. Can Be Used Independently With Other Applications.",
  3788. "keywords": [
  3789. "http",
  3790. "laravel paypal",
  3791. "paypal",
  3792. "rest",
  3793. "web service"
  3794. ],
  3795. "time": "2020-09-03T07:50:08+00:00"
  3796. },
  3797. {
  3798. "name": "swiftmailer/swiftmailer",
  3799. "version": "v6.2.3",
  3800. "source": {
  3801. "type": "git",
  3802. "url": "https://github.com/swiftmailer/swiftmailer.git",
  3803. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9"
  3804. },
  3805. "dist": {
  3806. "type": "zip",
  3807. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  3808. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  3809. "shasum": ""
  3810. },
  3811. "require": {
  3812. "egulias/email-validator": "~2.0",
  3813. "php": ">=7.0.0",
  3814. "symfony/polyfill-iconv": "^1.0",
  3815. "symfony/polyfill-intl-idn": "^1.10",
  3816. "symfony/polyfill-mbstring": "^1.0"
  3817. },
  3818. "require-dev": {
  3819. "mockery/mockery": "~0.9.1",
  3820. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  3821. },
  3822. "suggest": {
  3823. "ext-intl": "Needed to support internationalized email addresses",
  3824. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  3825. },
  3826. "type": "library",
  3827. "extra": {
  3828. "branch-alias": {
  3829. "dev-master": "6.2-dev"
  3830. }
  3831. },
  3832. "autoload": {
  3833. "files": [
  3834. "lib/swift_required.php"
  3835. ]
  3836. },
  3837. "notification-url": "https://packagist.org/downloads/",
  3838. "license": [
  3839. "MIT"
  3840. ],
  3841. "authors": [
  3842. {
  3843. "name": "Chris Corbyn"
  3844. },
  3845. {
  3846. "name": "Fabien Potencier",
  3847. "email": "fabien@symfony.com"
  3848. }
  3849. ],
  3850. "description": "Swiftmailer, free feature-rich PHP mailer",
  3851. "homepage": "https://swiftmailer.symfony.com",
  3852. "keywords": [
  3853. "email",
  3854. "mail",
  3855. "mailer"
  3856. ],
  3857. "time": "2019-11-12T09:31:26+00:00"
  3858. },
  3859. {
  3860. "name": "symfony/console",
  3861. "version": "v5.1.6",
  3862. "source": {
  3863. "type": "git",
  3864. "url": "https://github.com/symfony/console.git",
  3865. "reference": "04c3a31fe8ea94b42c9e2d1acc93d19782133b00"
  3866. },
  3867. "dist": {
  3868. "type": "zip",
  3869. "url": "https://api.github.com/repos/symfony/console/zipball/04c3a31fe8ea94b42c9e2d1acc93d19782133b00",
  3870. "reference": "04c3a31fe8ea94b42c9e2d1acc93d19782133b00",
  3871. "shasum": ""
  3872. },
  3873. "require": {
  3874. "php": ">=7.2.5",
  3875. "symfony/polyfill-mbstring": "~1.0",
  3876. "symfony/polyfill-php73": "^1.8",
  3877. "symfony/polyfill-php80": "^1.15",
  3878. "symfony/service-contracts": "^1.1|^2",
  3879. "symfony/string": "^5.1"
  3880. },
  3881. "conflict": {
  3882. "symfony/dependency-injection": "<4.4",
  3883. "symfony/dotenv": "<5.1",
  3884. "symfony/event-dispatcher": "<4.4",
  3885. "symfony/lock": "<4.4",
  3886. "symfony/process": "<4.4"
  3887. },
  3888. "provide": {
  3889. "psr/log-implementation": "1.0"
  3890. },
  3891. "require-dev": {
  3892. "psr/log": "~1.0",
  3893. "symfony/config": "^4.4|^5.0",
  3894. "symfony/dependency-injection": "^4.4|^5.0",
  3895. "symfony/event-dispatcher": "^4.4|^5.0",
  3896. "symfony/lock": "^4.4|^5.0",
  3897. "symfony/process": "^4.4|^5.0",
  3898. "symfony/var-dumper": "^4.4|^5.0"
  3899. },
  3900. "suggest": {
  3901. "psr/log": "For using the console logger",
  3902. "symfony/event-dispatcher": "",
  3903. "symfony/lock": "",
  3904. "symfony/process": ""
  3905. },
  3906. "type": "library",
  3907. "extra": {
  3908. "branch-alias": {
  3909. "dev-master": "5.1-dev"
  3910. }
  3911. },
  3912. "autoload": {
  3913. "psr-4": {
  3914. "Symfony\\Component\\Console\\": ""
  3915. },
  3916. "exclude-from-classmap": [
  3917. "/Tests/"
  3918. ]
  3919. },
  3920. "notification-url": "https://packagist.org/downloads/",
  3921. "license": [
  3922. "MIT"
  3923. ],
  3924. "authors": [
  3925. {
  3926. "name": "Fabien Potencier",
  3927. "email": "fabien@symfony.com"
  3928. },
  3929. {
  3930. "name": "Symfony Community",
  3931. "homepage": "https://symfony.com/contributors"
  3932. }
  3933. ],
  3934. "description": "Symfony Console Component",
  3935. "homepage": "https://symfony.com",
  3936. "funding": [
  3937. {
  3938. "url": "https://symfony.com/sponsor",
  3939. "type": "custom"
  3940. },
  3941. {
  3942. "url": "https://github.com/fabpot",
  3943. "type": "github"
  3944. },
  3945. {
  3946. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3947. "type": "tidelift"
  3948. }
  3949. ],
  3950. "time": "2020-09-18T14:27:32+00:00"
  3951. },
  3952. {
  3953. "name": "symfony/css-selector",
  3954. "version": "v5.1.6",
  3955. "source": {
  3956. "type": "git",
  3957. "url": "https://github.com/symfony/css-selector.git",
  3958. "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9"
  3959. },
  3960. "dist": {
  3961. "type": "zip",
  3962. "url": "https://api.github.com/repos/symfony/css-selector/zipball/e544e24472d4c97b2d11ade7caacd446727c6bf9",
  3963. "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9",
  3964. "shasum": ""
  3965. },
  3966. "require": {
  3967. "php": ">=7.2.5"
  3968. },
  3969. "type": "library",
  3970. "extra": {
  3971. "branch-alias": {
  3972. "dev-master": "5.1-dev"
  3973. }
  3974. },
  3975. "autoload": {
  3976. "psr-4": {
  3977. "Symfony\\Component\\CssSelector\\": ""
  3978. },
  3979. "exclude-from-classmap": [
  3980. "/Tests/"
  3981. ]
  3982. },
  3983. "notification-url": "https://packagist.org/downloads/",
  3984. "license": [
  3985. "MIT"
  3986. ],
  3987. "authors": [
  3988. {
  3989. "name": "Fabien Potencier",
  3990. "email": "fabien@symfony.com"
  3991. },
  3992. {
  3993. "name": "Jean-François Simon",
  3994. "email": "jeanfrancois.simon@sensiolabs.com"
  3995. },
  3996. {
  3997. "name": "Symfony Community",
  3998. "homepage": "https://symfony.com/contributors"
  3999. }
  4000. ],
  4001. "description": "Symfony CssSelector Component",
  4002. "homepage": "https://symfony.com",
  4003. "funding": [
  4004. {
  4005. "url": "https://symfony.com/sponsor",
  4006. "type": "custom"
  4007. },
  4008. {
  4009. "url": "https://github.com/fabpot",
  4010. "type": "github"
  4011. },
  4012. {
  4013. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4014. "type": "tidelift"
  4015. }
  4016. ],
  4017. "time": "2020-05-20T17:43:50+00:00"
  4018. },
  4019. {
  4020. "name": "symfony/deprecation-contracts",
  4021. "version": "v2.2.0",
  4022. "source": {
  4023. "type": "git",
  4024. "url": "https://github.com/symfony/deprecation-contracts.git",
  4025. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
  4026. },
  4027. "dist": {
  4028. "type": "zip",
  4029. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  4030. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  4031. "shasum": ""
  4032. },
  4033. "require": {
  4034. "php": ">=7.1"
  4035. },
  4036. "type": "library",
  4037. "extra": {
  4038. "branch-alias": {
  4039. "dev-master": "2.2-dev"
  4040. },
  4041. "thanks": {
  4042. "name": "symfony/contracts",
  4043. "url": "https://github.com/symfony/contracts"
  4044. }
  4045. },
  4046. "autoload": {
  4047. "files": [
  4048. "function.php"
  4049. ]
  4050. },
  4051. "notification-url": "https://packagist.org/downloads/",
  4052. "license": [
  4053. "MIT"
  4054. ],
  4055. "authors": [
  4056. {
  4057. "name": "Nicolas Grekas",
  4058. "email": "p@tchwork.com"
  4059. },
  4060. {
  4061. "name": "Symfony Community",
  4062. "homepage": "https://symfony.com/contributors"
  4063. }
  4064. ],
  4065. "description": "A generic function and convention to trigger deprecation notices",
  4066. "homepage": "https://symfony.com",
  4067. "support": {
  4068. "source": "https://github.com/symfony/deprecation-contracts/tree/master"
  4069. },
  4070. "funding": [
  4071. {
  4072. "url": "https://symfony.com/sponsor",
  4073. "type": "custom"
  4074. },
  4075. {
  4076. "url": "https://github.com/fabpot",
  4077. "type": "github"
  4078. },
  4079. {
  4080. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4081. "type": "tidelift"
  4082. }
  4083. ],
  4084. "time": "2020-09-07T11:33:47+00:00"
  4085. },
  4086. {
  4087. "name": "symfony/error-handler",
  4088. "version": "v5.1.6",
  4089. "source": {
  4090. "type": "git",
  4091. "url": "https://github.com/symfony/error-handler.git",
  4092. "reference": "d2f1d4996d5499f1261164d10080e4120001f041"
  4093. },
  4094. "dist": {
  4095. "type": "zip",
  4096. "url": "https://api.github.com/repos/symfony/error-handler/zipball/d2f1d4996d5499f1261164d10080e4120001f041",
  4097. "reference": "d2f1d4996d5499f1261164d10080e4120001f041",
  4098. "shasum": ""
  4099. },
  4100. "require": {
  4101. "php": ">=7.2.5",
  4102. "psr/log": "^1.0",
  4103. "symfony/polyfill-php80": "^1.15",
  4104. "symfony/var-dumper": "^4.4|^5.0"
  4105. },
  4106. "require-dev": {
  4107. "symfony/deprecation-contracts": "^2.1",
  4108. "symfony/http-kernel": "^4.4|^5.0",
  4109. "symfony/serializer": "^4.4|^5.0"
  4110. },
  4111. "type": "library",
  4112. "extra": {
  4113. "branch-alias": {
  4114. "dev-master": "5.1-dev"
  4115. }
  4116. },
  4117. "autoload": {
  4118. "psr-4": {
  4119. "Symfony\\Component\\ErrorHandler\\": ""
  4120. },
  4121. "exclude-from-classmap": [
  4122. "/Tests/"
  4123. ]
  4124. },
  4125. "notification-url": "https://packagist.org/downloads/",
  4126. "license": [
  4127. "MIT"
  4128. ],
  4129. "authors": [
  4130. {
  4131. "name": "Fabien Potencier",
  4132. "email": "fabien@symfony.com"
  4133. },
  4134. {
  4135. "name": "Symfony Community",
  4136. "homepage": "https://symfony.com/contributors"
  4137. }
  4138. ],
  4139. "description": "Symfony ErrorHandler Component",
  4140. "homepage": "https://symfony.com",
  4141. "funding": [
  4142. {
  4143. "url": "https://symfony.com/sponsor",
  4144. "type": "custom"
  4145. },
  4146. {
  4147. "url": "https://github.com/fabpot",
  4148. "type": "github"
  4149. },
  4150. {
  4151. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4152. "type": "tidelift"
  4153. }
  4154. ],
  4155. "time": "2020-09-27T03:44:28+00:00"
  4156. },
  4157. {
  4158. "name": "symfony/event-dispatcher",
  4159. "version": "v5.1.6",
  4160. "source": {
  4161. "type": "git",
  4162. "url": "https://github.com/symfony/event-dispatcher.git",
  4163. "reference": "d5de97d6af175a9e8131c546db054ca32842dd0f"
  4164. },
  4165. "dist": {
  4166. "type": "zip",
  4167. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/d5de97d6af175a9e8131c546db054ca32842dd0f",
  4168. "reference": "d5de97d6af175a9e8131c546db054ca32842dd0f",
  4169. "shasum": ""
  4170. },
  4171. "require": {
  4172. "php": ">=7.2.5",
  4173. "symfony/deprecation-contracts": "^2.1",
  4174. "symfony/event-dispatcher-contracts": "^2",
  4175. "symfony/polyfill-php80": "^1.15"
  4176. },
  4177. "conflict": {
  4178. "symfony/dependency-injection": "<4.4"
  4179. },
  4180. "provide": {
  4181. "psr/event-dispatcher-implementation": "1.0",
  4182. "symfony/event-dispatcher-implementation": "2.0"
  4183. },
  4184. "require-dev": {
  4185. "psr/log": "~1.0",
  4186. "symfony/config": "^4.4|^5.0",
  4187. "symfony/dependency-injection": "^4.4|^5.0",
  4188. "symfony/error-handler": "^4.4|^5.0",
  4189. "symfony/expression-language": "^4.4|^5.0",
  4190. "symfony/http-foundation": "^4.4|^5.0",
  4191. "symfony/service-contracts": "^1.1|^2",
  4192. "symfony/stopwatch": "^4.4|^5.0"
  4193. },
  4194. "suggest": {
  4195. "symfony/dependency-injection": "",
  4196. "symfony/http-kernel": ""
  4197. },
  4198. "type": "library",
  4199. "extra": {
  4200. "branch-alias": {
  4201. "dev-master": "5.1-dev"
  4202. }
  4203. },
  4204. "autoload": {
  4205. "psr-4": {
  4206. "Symfony\\Component\\EventDispatcher\\": ""
  4207. },
  4208. "exclude-from-classmap": [
  4209. "/Tests/"
  4210. ]
  4211. },
  4212. "notification-url": "https://packagist.org/downloads/",
  4213. "license": [
  4214. "MIT"
  4215. ],
  4216. "authors": [
  4217. {
  4218. "name": "Fabien Potencier",
  4219. "email": "fabien@symfony.com"
  4220. },
  4221. {
  4222. "name": "Symfony Community",
  4223. "homepage": "https://symfony.com/contributors"
  4224. }
  4225. ],
  4226. "description": "Symfony EventDispatcher Component",
  4227. "homepage": "https://symfony.com",
  4228. "funding": [
  4229. {
  4230. "url": "https://symfony.com/sponsor",
  4231. "type": "custom"
  4232. },
  4233. {
  4234. "url": "https://github.com/fabpot",
  4235. "type": "github"
  4236. },
  4237. {
  4238. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4239. "type": "tidelift"
  4240. }
  4241. ],
  4242. "time": "2020-09-18T14:27:32+00:00"
  4243. },
  4244. {
  4245. "name": "symfony/event-dispatcher-contracts",
  4246. "version": "v2.2.0",
  4247. "source": {
  4248. "type": "git",
  4249. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4250. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2"
  4251. },
  4252. "dist": {
  4253. "type": "zip",
  4254. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2",
  4255. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2",
  4256. "shasum": ""
  4257. },
  4258. "require": {
  4259. "php": ">=7.2.5",
  4260. "psr/event-dispatcher": "^1"
  4261. },
  4262. "suggest": {
  4263. "symfony/event-dispatcher-implementation": ""
  4264. },
  4265. "type": "library",
  4266. "extra": {
  4267. "branch-alias": {
  4268. "dev-master": "2.2-dev"
  4269. },
  4270. "thanks": {
  4271. "name": "symfony/contracts",
  4272. "url": "https://github.com/symfony/contracts"
  4273. }
  4274. },
  4275. "autoload": {
  4276. "psr-4": {
  4277. "Symfony\\Contracts\\EventDispatcher\\": ""
  4278. }
  4279. },
  4280. "notification-url": "https://packagist.org/downloads/",
  4281. "license": [
  4282. "MIT"
  4283. ],
  4284. "authors": [
  4285. {
  4286. "name": "Nicolas Grekas",
  4287. "email": "p@tchwork.com"
  4288. },
  4289. {
  4290. "name": "Symfony Community",
  4291. "homepage": "https://symfony.com/contributors"
  4292. }
  4293. ],
  4294. "description": "Generic abstractions related to dispatching event",
  4295. "homepage": "https://symfony.com",
  4296. "keywords": [
  4297. "abstractions",
  4298. "contracts",
  4299. "decoupling",
  4300. "interfaces",
  4301. "interoperability",
  4302. "standards"
  4303. ],
  4304. "support": {
  4305. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.2.0"
  4306. },
  4307. "funding": [
  4308. {
  4309. "url": "https://symfony.com/sponsor",
  4310. "type": "custom"
  4311. },
  4312. {
  4313. "url": "https://github.com/fabpot",
  4314. "type": "github"
  4315. },
  4316. {
  4317. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4318. "type": "tidelift"
  4319. }
  4320. ],
  4321. "time": "2020-09-07T11:33:47+00:00"
  4322. },
  4323. {
  4324. "name": "symfony/finder",
  4325. "version": "v5.1.6",
  4326. "source": {
  4327. "type": "git",
  4328. "url": "https://github.com/symfony/finder.git",
  4329. "reference": "2c3ba7ad6884e6c4451ce2340e2dc23f6fa3e0d8"
  4330. },
  4331. "dist": {
  4332. "type": "zip",
  4333. "url": "https://api.github.com/repos/symfony/finder/zipball/2c3ba7ad6884e6c4451ce2340e2dc23f6fa3e0d8",
  4334. "reference": "2c3ba7ad6884e6c4451ce2340e2dc23f6fa3e0d8",
  4335. "shasum": ""
  4336. },
  4337. "require": {
  4338. "php": ">=7.2.5"
  4339. },
  4340. "type": "library",
  4341. "extra": {
  4342. "branch-alias": {
  4343. "dev-master": "5.1-dev"
  4344. }
  4345. },
  4346. "autoload": {
  4347. "psr-4": {
  4348. "Symfony\\Component\\Finder\\": ""
  4349. },
  4350. "exclude-from-classmap": [
  4351. "/Tests/"
  4352. ]
  4353. },
  4354. "notification-url": "https://packagist.org/downloads/",
  4355. "license": [
  4356. "MIT"
  4357. ],
  4358. "authors": [
  4359. {
  4360. "name": "Fabien Potencier",
  4361. "email": "fabien@symfony.com"
  4362. },
  4363. {
  4364. "name": "Symfony Community",
  4365. "homepage": "https://symfony.com/contributors"
  4366. }
  4367. ],
  4368. "description": "Symfony Finder Component",
  4369. "homepage": "https://symfony.com",
  4370. "funding": [
  4371. {
  4372. "url": "https://symfony.com/sponsor",
  4373. "type": "custom"
  4374. },
  4375. {
  4376. "url": "https://github.com/fabpot",
  4377. "type": "github"
  4378. },
  4379. {
  4380. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4381. "type": "tidelift"
  4382. }
  4383. ],
  4384. "time": "2020-09-02T16:23:27+00:00"
  4385. },
  4386. {
  4387. "name": "symfony/http-client-contracts",
  4388. "version": "v2.2.0",
  4389. "source": {
  4390. "type": "git",
  4391. "url": "https://github.com/symfony/http-client-contracts.git",
  4392. "reference": "3a5d0fe7908daaa23e3dbf4cee3ba4bfbb19fdd3"
  4393. },
  4394. "dist": {
  4395. "type": "zip",
  4396. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/3a5d0fe7908daaa23e3dbf4cee3ba4bfbb19fdd3",
  4397. "reference": "3a5d0fe7908daaa23e3dbf4cee3ba4bfbb19fdd3",
  4398. "shasum": ""
  4399. },
  4400. "require": {
  4401. "php": ">=7.2.5"
  4402. },
  4403. "suggest": {
  4404. "symfony/http-client-implementation": ""
  4405. },
  4406. "type": "library",
  4407. "extra": {
  4408. "branch-alias": {
  4409. "dev-master": "2.2-dev"
  4410. },
  4411. "thanks": {
  4412. "name": "symfony/contracts",
  4413. "url": "https://github.com/symfony/contracts"
  4414. }
  4415. },
  4416. "autoload": {
  4417. "psr-4": {
  4418. "Symfony\\Contracts\\HttpClient\\": ""
  4419. }
  4420. },
  4421. "notification-url": "https://packagist.org/downloads/",
  4422. "license": [
  4423. "MIT"
  4424. ],
  4425. "authors": [
  4426. {
  4427. "name": "Nicolas Grekas",
  4428. "email": "p@tchwork.com"
  4429. },
  4430. {
  4431. "name": "Symfony Community",
  4432. "homepage": "https://symfony.com/contributors"
  4433. }
  4434. ],
  4435. "description": "Generic abstractions related to HTTP clients",
  4436. "homepage": "https://symfony.com",
  4437. "keywords": [
  4438. "abstractions",
  4439. "contracts",
  4440. "decoupling",
  4441. "interfaces",
  4442. "interoperability",
  4443. "standards"
  4444. ],
  4445. "funding": [
  4446. {
  4447. "url": "https://symfony.com/sponsor",
  4448. "type": "custom"
  4449. },
  4450. {
  4451. "url": "https://github.com/fabpot",
  4452. "type": "github"
  4453. },
  4454. {
  4455. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4456. "type": "tidelift"
  4457. }
  4458. ],
  4459. "time": "2020-09-07T11:33:47+00:00"
  4460. },
  4461. {
  4462. "name": "symfony/http-foundation",
  4463. "version": "v5.1.6",
  4464. "source": {
  4465. "type": "git",
  4466. "url": "https://github.com/symfony/http-foundation.git",
  4467. "reference": "6cca6b2e4b69fc5bace160d14cf1ee5f71483db4"
  4468. },
  4469. "dist": {
  4470. "type": "zip",
  4471. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/6cca6b2e4b69fc5bace160d14cf1ee5f71483db4",
  4472. "reference": "6cca6b2e4b69fc5bace160d14cf1ee5f71483db4",
  4473. "shasum": ""
  4474. },
  4475. "require": {
  4476. "php": ">=7.2.5",
  4477. "symfony/deprecation-contracts": "^2.1",
  4478. "symfony/polyfill-mbstring": "~1.1",
  4479. "symfony/polyfill-php80": "^1.15"
  4480. },
  4481. "require-dev": {
  4482. "predis/predis": "~1.0",
  4483. "symfony/cache": "^4.4|^5.0",
  4484. "symfony/expression-language": "^4.4|^5.0",
  4485. "symfony/mime": "^4.4|^5.0"
  4486. },
  4487. "suggest": {
  4488. "symfony/mime": "To use the file extension guesser"
  4489. },
  4490. "type": "library",
  4491. "extra": {
  4492. "branch-alias": {
  4493. "dev-master": "5.1-dev"
  4494. }
  4495. },
  4496. "autoload": {
  4497. "psr-4": {
  4498. "Symfony\\Component\\HttpFoundation\\": ""
  4499. },
  4500. "exclude-from-classmap": [
  4501. "/Tests/"
  4502. ]
  4503. },
  4504. "notification-url": "https://packagist.org/downloads/",
  4505. "license": [
  4506. "MIT"
  4507. ],
  4508. "authors": [
  4509. {
  4510. "name": "Fabien Potencier",
  4511. "email": "fabien@symfony.com"
  4512. },
  4513. {
  4514. "name": "Symfony Community",
  4515. "homepage": "https://symfony.com/contributors"
  4516. }
  4517. ],
  4518. "description": "Symfony HttpFoundation Component",
  4519. "homepage": "https://symfony.com",
  4520. "funding": [
  4521. {
  4522. "url": "https://symfony.com/sponsor",
  4523. "type": "custom"
  4524. },
  4525. {
  4526. "url": "https://github.com/fabpot",
  4527. "type": "github"
  4528. },
  4529. {
  4530. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4531. "type": "tidelift"
  4532. }
  4533. ],
  4534. "time": "2020-09-13T05:01:27+00:00"
  4535. },
  4536. {
  4537. "name": "symfony/http-kernel",
  4538. "version": "v5.1.6",
  4539. "source": {
  4540. "type": "git",
  4541. "url": "https://github.com/symfony/http-kernel.git",
  4542. "reference": "17227644c3c66dcf32bdfeceff4364d090cd6756"
  4543. },
  4544. "dist": {
  4545. "type": "zip",
  4546. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/17227644c3c66dcf32bdfeceff4364d090cd6756",
  4547. "reference": "17227644c3c66dcf32bdfeceff4364d090cd6756",
  4548. "shasum": ""
  4549. },
  4550. "require": {
  4551. "php": ">=7.2.5",
  4552. "psr/log": "~1.0",
  4553. "symfony/deprecation-contracts": "^2.1",
  4554. "symfony/error-handler": "^4.4|^5.0",
  4555. "symfony/event-dispatcher": "^5.0",
  4556. "symfony/http-client-contracts": "^1.1|^2",
  4557. "symfony/http-foundation": "^4.4|^5.0",
  4558. "symfony/polyfill-ctype": "^1.8",
  4559. "symfony/polyfill-php73": "^1.9",
  4560. "symfony/polyfill-php80": "^1.15"
  4561. },
  4562. "conflict": {
  4563. "symfony/browser-kit": "<4.4",
  4564. "symfony/cache": "<5.0",
  4565. "symfony/config": "<5.0",
  4566. "symfony/console": "<4.4",
  4567. "symfony/dependency-injection": "<4.4",
  4568. "symfony/doctrine-bridge": "<5.0",
  4569. "symfony/form": "<5.0",
  4570. "symfony/http-client": "<5.0",
  4571. "symfony/mailer": "<5.0",
  4572. "symfony/messenger": "<5.0",
  4573. "symfony/translation": "<5.0",
  4574. "symfony/twig-bridge": "<5.0",
  4575. "symfony/validator": "<5.0",
  4576. "twig/twig": "<2.4"
  4577. },
  4578. "provide": {
  4579. "psr/log-implementation": "1.0"
  4580. },
  4581. "require-dev": {
  4582. "psr/cache": "~1.0",
  4583. "symfony/browser-kit": "^4.4|^5.0",
  4584. "symfony/config": "^5.0",
  4585. "symfony/console": "^4.4|^5.0",
  4586. "symfony/css-selector": "^4.4|^5.0",
  4587. "symfony/dependency-injection": "^4.4|^5.0",
  4588. "symfony/dom-crawler": "^4.4|^5.0",
  4589. "symfony/expression-language": "^4.4|^5.0",
  4590. "symfony/finder": "^4.4|^5.0",
  4591. "symfony/process": "^4.4|^5.0",
  4592. "symfony/routing": "^4.4|^5.0",
  4593. "symfony/stopwatch": "^4.4|^5.0",
  4594. "symfony/translation": "^4.4|^5.0",
  4595. "symfony/translation-contracts": "^1.1|^2",
  4596. "twig/twig": "^2.4|^3.0"
  4597. },
  4598. "suggest": {
  4599. "symfony/browser-kit": "",
  4600. "symfony/config": "",
  4601. "symfony/console": "",
  4602. "symfony/dependency-injection": ""
  4603. },
  4604. "type": "library",
  4605. "extra": {
  4606. "branch-alias": {
  4607. "dev-master": "5.1-dev"
  4608. }
  4609. },
  4610. "autoload": {
  4611. "psr-4": {
  4612. "Symfony\\Component\\HttpKernel\\": ""
  4613. },
  4614. "exclude-from-classmap": [
  4615. "/Tests/"
  4616. ]
  4617. },
  4618. "notification-url": "https://packagist.org/downloads/",
  4619. "license": [
  4620. "MIT"
  4621. ],
  4622. "authors": [
  4623. {
  4624. "name": "Fabien Potencier",
  4625. "email": "fabien@symfony.com"
  4626. },
  4627. {
  4628. "name": "Symfony Community",
  4629. "homepage": "https://symfony.com/contributors"
  4630. }
  4631. ],
  4632. "description": "Symfony HttpKernel Component",
  4633. "homepage": "https://symfony.com",
  4634. "funding": [
  4635. {
  4636. "url": "https://symfony.com/sponsor",
  4637. "type": "custom"
  4638. },
  4639. {
  4640. "url": "https://github.com/fabpot",
  4641. "type": "github"
  4642. },
  4643. {
  4644. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4645. "type": "tidelift"
  4646. }
  4647. ],
  4648. "time": "2020-09-27T04:33:19+00:00"
  4649. },
  4650. {
  4651. "name": "symfony/mime",
  4652. "version": "v5.1.6",
  4653. "source": {
  4654. "type": "git",
  4655. "url": "https://github.com/symfony/mime.git",
  4656. "reference": "4404d6545125863561721514ad9388db2661eec5"
  4657. },
  4658. "dist": {
  4659. "type": "zip",
  4660. "url": "https://api.github.com/repos/symfony/mime/zipball/4404d6545125863561721514ad9388db2661eec5",
  4661. "reference": "4404d6545125863561721514ad9388db2661eec5",
  4662. "shasum": ""
  4663. },
  4664. "require": {
  4665. "php": ">=7.2.5",
  4666. "symfony/polyfill-intl-idn": "^1.10",
  4667. "symfony/polyfill-mbstring": "^1.0",
  4668. "symfony/polyfill-php80": "^1.15"
  4669. },
  4670. "conflict": {
  4671. "symfony/mailer": "<4.4"
  4672. },
  4673. "require-dev": {
  4674. "egulias/email-validator": "^2.1.10",
  4675. "symfony/dependency-injection": "^4.4|^5.0"
  4676. },
  4677. "type": "library",
  4678. "extra": {
  4679. "branch-alias": {
  4680. "dev-master": "5.1-dev"
  4681. }
  4682. },
  4683. "autoload": {
  4684. "psr-4": {
  4685. "Symfony\\Component\\Mime\\": ""
  4686. },
  4687. "exclude-from-classmap": [
  4688. "/Tests/"
  4689. ]
  4690. },
  4691. "notification-url": "https://packagist.org/downloads/",
  4692. "license": [
  4693. "MIT"
  4694. ],
  4695. "authors": [
  4696. {
  4697. "name": "Fabien Potencier",
  4698. "email": "fabien@symfony.com"
  4699. },
  4700. {
  4701. "name": "Symfony Community",
  4702. "homepage": "https://symfony.com/contributors"
  4703. }
  4704. ],
  4705. "description": "A library to manipulate MIME messages",
  4706. "homepage": "https://symfony.com",
  4707. "keywords": [
  4708. "mime",
  4709. "mime-type"
  4710. ],
  4711. "funding": [
  4712. {
  4713. "url": "https://symfony.com/sponsor",
  4714. "type": "custom"
  4715. },
  4716. {
  4717. "url": "https://github.com/fabpot",
  4718. "type": "github"
  4719. },
  4720. {
  4721. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4722. "type": "tidelift"
  4723. }
  4724. ],
  4725. "time": "2020-09-02T16:23:27+00:00"
  4726. },
  4727. {
  4728. "name": "symfony/polyfill-ctype",
  4729. "version": "v1.18.1",
  4730. "source": {
  4731. "type": "git",
  4732. "url": "https://github.com/symfony/polyfill-ctype.git",
  4733. "reference": "1c302646f6efc070cd46856e600e5e0684d6b454"
  4734. },
  4735. "dist": {
  4736. "type": "zip",
  4737. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/1c302646f6efc070cd46856e600e5e0684d6b454",
  4738. "reference": "1c302646f6efc070cd46856e600e5e0684d6b454",
  4739. "shasum": ""
  4740. },
  4741. "require": {
  4742. "php": ">=5.3.3"
  4743. },
  4744. "suggest": {
  4745. "ext-ctype": "For best performance"
  4746. },
  4747. "type": "library",
  4748. "extra": {
  4749. "branch-alias": {
  4750. "dev-master": "1.18-dev"
  4751. },
  4752. "thanks": {
  4753. "name": "symfony/polyfill",
  4754. "url": "https://github.com/symfony/polyfill"
  4755. }
  4756. },
  4757. "autoload": {
  4758. "psr-4": {
  4759. "Symfony\\Polyfill\\Ctype\\": ""
  4760. },
  4761. "files": [
  4762. "bootstrap.php"
  4763. ]
  4764. },
  4765. "notification-url": "https://packagist.org/downloads/",
  4766. "license": [
  4767. "MIT"
  4768. ],
  4769. "authors": [
  4770. {
  4771. "name": "Gert de Pagter",
  4772. "email": "BackEndTea@gmail.com"
  4773. },
  4774. {
  4775. "name": "Symfony Community",
  4776. "homepage": "https://symfony.com/contributors"
  4777. }
  4778. ],
  4779. "description": "Symfony polyfill for ctype functions",
  4780. "homepage": "https://symfony.com",
  4781. "keywords": [
  4782. "compatibility",
  4783. "ctype",
  4784. "polyfill",
  4785. "portable"
  4786. ],
  4787. "funding": [
  4788. {
  4789. "url": "https://symfony.com/sponsor",
  4790. "type": "custom"
  4791. },
  4792. {
  4793. "url": "https://github.com/fabpot",
  4794. "type": "github"
  4795. },
  4796. {
  4797. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4798. "type": "tidelift"
  4799. }
  4800. ],
  4801. "time": "2020-07-14T12:35:20+00:00"
  4802. },
  4803. {
  4804. "name": "symfony/polyfill-iconv",
  4805. "version": "v1.18.1",
  4806. "source": {
  4807. "type": "git",
  4808. "url": "https://github.com/symfony/polyfill-iconv.git",
  4809. "reference": "6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36"
  4810. },
  4811. "dist": {
  4812. "type": "zip",
  4813. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36",
  4814. "reference": "6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36",
  4815. "shasum": ""
  4816. },
  4817. "require": {
  4818. "php": ">=5.3.3"
  4819. },
  4820. "suggest": {
  4821. "ext-iconv": "For best performance"
  4822. },
  4823. "type": "library",
  4824. "extra": {
  4825. "branch-alias": {
  4826. "dev-master": "1.18-dev"
  4827. },
  4828. "thanks": {
  4829. "name": "symfony/polyfill",
  4830. "url": "https://github.com/symfony/polyfill"
  4831. }
  4832. },
  4833. "autoload": {
  4834. "psr-4": {
  4835. "Symfony\\Polyfill\\Iconv\\": ""
  4836. },
  4837. "files": [
  4838. "bootstrap.php"
  4839. ]
  4840. },
  4841. "notification-url": "https://packagist.org/downloads/",
  4842. "license": [
  4843. "MIT"
  4844. ],
  4845. "authors": [
  4846. {
  4847. "name": "Nicolas Grekas",
  4848. "email": "p@tchwork.com"
  4849. },
  4850. {
  4851. "name": "Symfony Community",
  4852. "homepage": "https://symfony.com/contributors"
  4853. }
  4854. ],
  4855. "description": "Symfony polyfill for the Iconv extension",
  4856. "homepage": "https://symfony.com",
  4857. "keywords": [
  4858. "compatibility",
  4859. "iconv",
  4860. "polyfill",
  4861. "portable",
  4862. "shim"
  4863. ],
  4864. "funding": [
  4865. {
  4866. "url": "https://symfony.com/sponsor",
  4867. "type": "custom"
  4868. },
  4869. {
  4870. "url": "https://github.com/fabpot",
  4871. "type": "github"
  4872. },
  4873. {
  4874. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4875. "type": "tidelift"
  4876. }
  4877. ],
  4878. "time": "2020-07-14T12:35:20+00:00"
  4879. },
  4880. {
  4881. "name": "symfony/polyfill-intl-grapheme",
  4882. "version": "v1.18.1",
  4883. "source": {
  4884. "type": "git",
  4885. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  4886. "reference": "b740103edbdcc39602239ee8860f0f45a8eb9aa5"
  4887. },
  4888. "dist": {
  4889. "type": "zip",
  4890. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b740103edbdcc39602239ee8860f0f45a8eb9aa5",
  4891. "reference": "b740103edbdcc39602239ee8860f0f45a8eb9aa5",
  4892. "shasum": ""
  4893. },
  4894. "require": {
  4895. "php": ">=5.3.3"
  4896. },
  4897. "suggest": {
  4898. "ext-intl": "For best performance"
  4899. },
  4900. "type": "library",
  4901. "extra": {
  4902. "branch-alias": {
  4903. "dev-master": "1.18-dev"
  4904. },
  4905. "thanks": {
  4906. "name": "symfony/polyfill",
  4907. "url": "https://github.com/symfony/polyfill"
  4908. }
  4909. },
  4910. "autoload": {
  4911. "psr-4": {
  4912. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  4913. },
  4914. "files": [
  4915. "bootstrap.php"
  4916. ]
  4917. },
  4918. "notification-url": "https://packagist.org/downloads/",
  4919. "license": [
  4920. "MIT"
  4921. ],
  4922. "authors": [
  4923. {
  4924. "name": "Nicolas Grekas",
  4925. "email": "p@tchwork.com"
  4926. },
  4927. {
  4928. "name": "Symfony Community",
  4929. "homepage": "https://symfony.com/contributors"
  4930. }
  4931. ],
  4932. "description": "Symfony polyfill for intl's grapheme_* functions",
  4933. "homepage": "https://symfony.com",
  4934. "keywords": [
  4935. "compatibility",
  4936. "grapheme",
  4937. "intl",
  4938. "polyfill",
  4939. "portable",
  4940. "shim"
  4941. ],
  4942. "funding": [
  4943. {
  4944. "url": "https://symfony.com/sponsor",
  4945. "type": "custom"
  4946. },
  4947. {
  4948. "url": "https://github.com/fabpot",
  4949. "type": "github"
  4950. },
  4951. {
  4952. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4953. "type": "tidelift"
  4954. }
  4955. ],
  4956. "time": "2020-07-14T12:35:20+00:00"
  4957. },
  4958. {
  4959. "name": "symfony/polyfill-intl-idn",
  4960. "version": "v1.18.1",
  4961. "source": {
  4962. "type": "git",
  4963. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  4964. "reference": "5dcab1bc7146cf8c1beaa4502a3d9be344334251"
  4965. },
  4966. "dist": {
  4967. "type": "zip",
  4968. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/5dcab1bc7146cf8c1beaa4502a3d9be344334251",
  4969. "reference": "5dcab1bc7146cf8c1beaa4502a3d9be344334251",
  4970. "shasum": ""
  4971. },
  4972. "require": {
  4973. "php": ">=5.3.3",
  4974. "symfony/polyfill-intl-normalizer": "^1.10",
  4975. "symfony/polyfill-php70": "^1.10",
  4976. "symfony/polyfill-php72": "^1.10"
  4977. },
  4978. "suggest": {
  4979. "ext-intl": "For best performance"
  4980. },
  4981. "type": "library",
  4982. "extra": {
  4983. "branch-alias": {
  4984. "dev-master": "1.18-dev"
  4985. },
  4986. "thanks": {
  4987. "name": "symfony/polyfill",
  4988. "url": "https://github.com/symfony/polyfill"
  4989. }
  4990. },
  4991. "autoload": {
  4992. "psr-4": {
  4993. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4994. },
  4995. "files": [
  4996. "bootstrap.php"
  4997. ]
  4998. },
  4999. "notification-url": "https://packagist.org/downloads/",
  5000. "license": [
  5001. "MIT"
  5002. ],
  5003. "authors": [
  5004. {
  5005. "name": "Laurent Bassin",
  5006. "email": "laurent@bassin.info"
  5007. },
  5008. {
  5009. "name": "Trevor Rowbotham",
  5010. "email": "trevor.rowbotham@pm.me"
  5011. },
  5012. {
  5013. "name": "Symfony Community",
  5014. "homepage": "https://symfony.com/contributors"
  5015. }
  5016. ],
  5017. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5018. "homepage": "https://symfony.com",
  5019. "keywords": [
  5020. "compatibility",
  5021. "idn",
  5022. "intl",
  5023. "polyfill",
  5024. "portable",
  5025. "shim"
  5026. ],
  5027. "funding": [
  5028. {
  5029. "url": "https://symfony.com/sponsor",
  5030. "type": "custom"
  5031. },
  5032. {
  5033. "url": "https://github.com/fabpot",
  5034. "type": "github"
  5035. },
  5036. {
  5037. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5038. "type": "tidelift"
  5039. }
  5040. ],
  5041. "time": "2020-08-04T06:02:08+00:00"
  5042. },
  5043. {
  5044. "name": "symfony/polyfill-intl-normalizer",
  5045. "version": "v1.18.1",
  5046. "source": {
  5047. "type": "git",
  5048. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5049. "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e"
  5050. },
  5051. "dist": {
  5052. "type": "zip",
  5053. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e",
  5054. "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e",
  5055. "shasum": ""
  5056. },
  5057. "require": {
  5058. "php": ">=5.3.3"
  5059. },
  5060. "suggest": {
  5061. "ext-intl": "For best performance"
  5062. },
  5063. "type": "library",
  5064. "extra": {
  5065. "branch-alias": {
  5066. "dev-master": "1.18-dev"
  5067. },
  5068. "thanks": {
  5069. "name": "symfony/polyfill",
  5070. "url": "https://github.com/symfony/polyfill"
  5071. }
  5072. },
  5073. "autoload": {
  5074. "psr-4": {
  5075. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5076. },
  5077. "files": [
  5078. "bootstrap.php"
  5079. ],
  5080. "classmap": [
  5081. "Resources/stubs"
  5082. ]
  5083. },
  5084. "notification-url": "https://packagist.org/downloads/",
  5085. "license": [
  5086. "MIT"
  5087. ],
  5088. "authors": [
  5089. {
  5090. "name": "Nicolas Grekas",
  5091. "email": "p@tchwork.com"
  5092. },
  5093. {
  5094. "name": "Symfony Community",
  5095. "homepage": "https://symfony.com/contributors"
  5096. }
  5097. ],
  5098. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5099. "homepage": "https://symfony.com",
  5100. "keywords": [
  5101. "compatibility",
  5102. "intl",
  5103. "normalizer",
  5104. "polyfill",
  5105. "portable",
  5106. "shim"
  5107. ],
  5108. "funding": [
  5109. {
  5110. "url": "https://symfony.com/sponsor",
  5111. "type": "custom"
  5112. },
  5113. {
  5114. "url": "https://github.com/fabpot",
  5115. "type": "github"
  5116. },
  5117. {
  5118. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5119. "type": "tidelift"
  5120. }
  5121. ],
  5122. "time": "2020-07-14T12:35:20+00:00"
  5123. },
  5124. {
  5125. "name": "symfony/polyfill-mbstring",
  5126. "version": "v1.18.1",
  5127. "source": {
  5128. "type": "git",
  5129. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5130. "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a"
  5131. },
  5132. "dist": {
  5133. "type": "zip",
  5134. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/a6977d63bf9a0ad4c65cd352709e230876f9904a",
  5135. "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a",
  5136. "shasum": ""
  5137. },
  5138. "require": {
  5139. "php": ">=5.3.3"
  5140. },
  5141. "suggest": {
  5142. "ext-mbstring": "For best performance"
  5143. },
  5144. "type": "library",
  5145. "extra": {
  5146. "branch-alias": {
  5147. "dev-master": "1.18-dev"
  5148. },
  5149. "thanks": {
  5150. "name": "symfony/polyfill",
  5151. "url": "https://github.com/symfony/polyfill"
  5152. }
  5153. },
  5154. "autoload": {
  5155. "psr-4": {
  5156. "Symfony\\Polyfill\\Mbstring\\": ""
  5157. },
  5158. "files": [
  5159. "bootstrap.php"
  5160. ]
  5161. },
  5162. "notification-url": "https://packagist.org/downloads/",
  5163. "license": [
  5164. "MIT"
  5165. ],
  5166. "authors": [
  5167. {
  5168. "name": "Nicolas Grekas",
  5169. "email": "p@tchwork.com"
  5170. },
  5171. {
  5172. "name": "Symfony Community",
  5173. "homepage": "https://symfony.com/contributors"
  5174. }
  5175. ],
  5176. "description": "Symfony polyfill for the Mbstring extension",
  5177. "homepage": "https://symfony.com",
  5178. "keywords": [
  5179. "compatibility",
  5180. "mbstring",
  5181. "polyfill",
  5182. "portable",
  5183. "shim"
  5184. ],
  5185. "funding": [
  5186. {
  5187. "url": "https://symfony.com/sponsor",
  5188. "type": "custom"
  5189. },
  5190. {
  5191. "url": "https://github.com/fabpot",
  5192. "type": "github"
  5193. },
  5194. {
  5195. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5196. "type": "tidelift"
  5197. }
  5198. ],
  5199. "time": "2020-07-14T12:35:20+00:00"
  5200. },
  5201. {
  5202. "name": "symfony/polyfill-php70",
  5203. "version": "v1.18.1",
  5204. "source": {
  5205. "type": "git",
  5206. "url": "https://github.com/symfony/polyfill-php70.git",
  5207. "reference": "0dd93f2c578bdc9c72697eaa5f1dd25644e618d3"
  5208. },
  5209. "dist": {
  5210. "type": "zip",
  5211. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/0dd93f2c578bdc9c72697eaa5f1dd25644e618d3",
  5212. "reference": "0dd93f2c578bdc9c72697eaa5f1dd25644e618d3",
  5213. "shasum": ""
  5214. },
  5215. "require": {
  5216. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  5217. "php": ">=5.3.3"
  5218. },
  5219. "type": "library",
  5220. "extra": {
  5221. "branch-alias": {
  5222. "dev-master": "1.18-dev"
  5223. },
  5224. "thanks": {
  5225. "name": "symfony/polyfill",
  5226. "url": "https://github.com/symfony/polyfill"
  5227. }
  5228. },
  5229. "autoload": {
  5230. "psr-4": {
  5231. "Symfony\\Polyfill\\Php70\\": ""
  5232. },
  5233. "files": [
  5234. "bootstrap.php"
  5235. ],
  5236. "classmap": [
  5237. "Resources/stubs"
  5238. ]
  5239. },
  5240. "notification-url": "https://packagist.org/downloads/",
  5241. "license": [
  5242. "MIT"
  5243. ],
  5244. "authors": [
  5245. {
  5246. "name": "Nicolas Grekas",
  5247. "email": "p@tchwork.com"
  5248. },
  5249. {
  5250. "name": "Symfony Community",
  5251. "homepage": "https://symfony.com/contributors"
  5252. }
  5253. ],
  5254. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  5255. "homepage": "https://symfony.com",
  5256. "keywords": [
  5257. "compatibility",
  5258. "polyfill",
  5259. "portable",
  5260. "shim"
  5261. ],
  5262. "funding": [
  5263. {
  5264. "url": "https://symfony.com/sponsor",
  5265. "type": "custom"
  5266. },
  5267. {
  5268. "url": "https://github.com/fabpot",
  5269. "type": "github"
  5270. },
  5271. {
  5272. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5273. "type": "tidelift"
  5274. }
  5275. ],
  5276. "time": "2020-07-14T12:35:20+00:00"
  5277. },
  5278. {
  5279. "name": "symfony/polyfill-php72",
  5280. "version": "v1.18.1",
  5281. "source": {
  5282. "type": "git",
  5283. "url": "https://github.com/symfony/polyfill-php72.git",
  5284. "reference": "639447d008615574653fb3bc60d1986d7172eaae"
  5285. },
  5286. "dist": {
  5287. "type": "zip",
  5288. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/639447d008615574653fb3bc60d1986d7172eaae",
  5289. "reference": "639447d008615574653fb3bc60d1986d7172eaae",
  5290. "shasum": ""
  5291. },
  5292. "require": {
  5293. "php": ">=5.3.3"
  5294. },
  5295. "type": "library",
  5296. "extra": {
  5297. "branch-alias": {
  5298. "dev-master": "1.18-dev"
  5299. },
  5300. "thanks": {
  5301. "name": "symfony/polyfill",
  5302. "url": "https://github.com/symfony/polyfill"
  5303. }
  5304. },
  5305. "autoload": {
  5306. "psr-4": {
  5307. "Symfony\\Polyfill\\Php72\\": ""
  5308. },
  5309. "files": [
  5310. "bootstrap.php"
  5311. ]
  5312. },
  5313. "notification-url": "https://packagist.org/downloads/",
  5314. "license": [
  5315. "MIT"
  5316. ],
  5317. "authors": [
  5318. {
  5319. "name": "Nicolas Grekas",
  5320. "email": "p@tchwork.com"
  5321. },
  5322. {
  5323. "name": "Symfony Community",
  5324. "homepage": "https://symfony.com/contributors"
  5325. }
  5326. ],
  5327. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5328. "homepage": "https://symfony.com",
  5329. "keywords": [
  5330. "compatibility",
  5331. "polyfill",
  5332. "portable",
  5333. "shim"
  5334. ],
  5335. "funding": [
  5336. {
  5337. "url": "https://symfony.com/sponsor",
  5338. "type": "custom"
  5339. },
  5340. {
  5341. "url": "https://github.com/fabpot",
  5342. "type": "github"
  5343. },
  5344. {
  5345. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5346. "type": "tidelift"
  5347. }
  5348. ],
  5349. "time": "2020-07-14T12:35:20+00:00"
  5350. },
  5351. {
  5352. "name": "symfony/polyfill-php73",
  5353. "version": "v1.18.1",
  5354. "source": {
  5355. "type": "git",
  5356. "url": "https://github.com/symfony/polyfill-php73.git",
  5357. "reference": "fffa1a52a023e782cdcc221d781fe1ec8f87fcca"
  5358. },
  5359. "dist": {
  5360. "type": "zip",
  5361. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fffa1a52a023e782cdcc221d781fe1ec8f87fcca",
  5362. "reference": "fffa1a52a023e782cdcc221d781fe1ec8f87fcca",
  5363. "shasum": ""
  5364. },
  5365. "require": {
  5366. "php": ">=5.3.3"
  5367. },
  5368. "type": "library",
  5369. "extra": {
  5370. "branch-alias": {
  5371. "dev-master": "1.18-dev"
  5372. },
  5373. "thanks": {
  5374. "name": "symfony/polyfill",
  5375. "url": "https://github.com/symfony/polyfill"
  5376. }
  5377. },
  5378. "autoload": {
  5379. "psr-4": {
  5380. "Symfony\\Polyfill\\Php73\\": ""
  5381. },
  5382. "files": [
  5383. "bootstrap.php"
  5384. ],
  5385. "classmap": [
  5386. "Resources/stubs"
  5387. ]
  5388. },
  5389. "notification-url": "https://packagist.org/downloads/",
  5390. "license": [
  5391. "MIT"
  5392. ],
  5393. "authors": [
  5394. {
  5395. "name": "Nicolas Grekas",
  5396. "email": "p@tchwork.com"
  5397. },
  5398. {
  5399. "name": "Symfony Community",
  5400. "homepage": "https://symfony.com/contributors"
  5401. }
  5402. ],
  5403. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  5404. "homepage": "https://symfony.com",
  5405. "keywords": [
  5406. "compatibility",
  5407. "polyfill",
  5408. "portable",
  5409. "shim"
  5410. ],
  5411. "funding": [
  5412. {
  5413. "url": "https://symfony.com/sponsor",
  5414. "type": "custom"
  5415. },
  5416. {
  5417. "url": "https://github.com/fabpot",
  5418. "type": "github"
  5419. },
  5420. {
  5421. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5422. "type": "tidelift"
  5423. }
  5424. ],
  5425. "time": "2020-07-14T12:35:20+00:00"
  5426. },
  5427. {
  5428. "name": "symfony/polyfill-php80",
  5429. "version": "v1.18.1",
  5430. "source": {
  5431. "type": "git",
  5432. "url": "https://github.com/symfony/polyfill-php80.git",
  5433. "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981"
  5434. },
  5435. "dist": {
  5436. "type": "zip",
  5437. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/d87d5766cbf48d72388a9f6b85f280c8ad51f981",
  5438. "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981",
  5439. "shasum": ""
  5440. },
  5441. "require": {
  5442. "php": ">=7.0.8"
  5443. },
  5444. "type": "library",
  5445. "extra": {
  5446. "branch-alias": {
  5447. "dev-master": "1.18-dev"
  5448. },
  5449. "thanks": {
  5450. "name": "symfony/polyfill",
  5451. "url": "https://github.com/symfony/polyfill"
  5452. }
  5453. },
  5454. "autoload": {
  5455. "psr-4": {
  5456. "Symfony\\Polyfill\\Php80\\": ""
  5457. },
  5458. "files": [
  5459. "bootstrap.php"
  5460. ],
  5461. "classmap": [
  5462. "Resources/stubs"
  5463. ]
  5464. },
  5465. "notification-url": "https://packagist.org/downloads/",
  5466. "license": [
  5467. "MIT"
  5468. ],
  5469. "authors": [
  5470. {
  5471. "name": "Ion Bazan",
  5472. "email": "ion.bazan@gmail.com"
  5473. },
  5474. {
  5475. "name": "Nicolas Grekas",
  5476. "email": "p@tchwork.com"
  5477. },
  5478. {
  5479. "name": "Symfony Community",
  5480. "homepage": "https://symfony.com/contributors"
  5481. }
  5482. ],
  5483. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5484. "homepage": "https://symfony.com",
  5485. "keywords": [
  5486. "compatibility",
  5487. "polyfill",
  5488. "portable",
  5489. "shim"
  5490. ],
  5491. "funding": [
  5492. {
  5493. "url": "https://symfony.com/sponsor",
  5494. "type": "custom"
  5495. },
  5496. {
  5497. "url": "https://github.com/fabpot",
  5498. "type": "github"
  5499. },
  5500. {
  5501. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5502. "type": "tidelift"
  5503. }
  5504. ],
  5505. "time": "2020-07-14T12:35:20+00:00"
  5506. },
  5507. {
  5508. "name": "symfony/process",
  5509. "version": "v5.1.6",
  5510. "source": {
  5511. "type": "git",
  5512. "url": "https://github.com/symfony/process.git",
  5513. "reference": "d3a2e64866169586502f0cd9cab69135ad12cee9"
  5514. },
  5515. "dist": {
  5516. "type": "zip",
  5517. "url": "https://api.github.com/repos/symfony/process/zipball/d3a2e64866169586502f0cd9cab69135ad12cee9",
  5518. "reference": "d3a2e64866169586502f0cd9cab69135ad12cee9",
  5519. "shasum": ""
  5520. },
  5521. "require": {
  5522. "php": ">=7.2.5",
  5523. "symfony/polyfill-php80": "^1.15"
  5524. },
  5525. "type": "library",
  5526. "extra": {
  5527. "branch-alias": {
  5528. "dev-master": "5.1-dev"
  5529. }
  5530. },
  5531. "autoload": {
  5532. "psr-4": {
  5533. "Symfony\\Component\\Process\\": ""
  5534. },
  5535. "exclude-from-classmap": [
  5536. "/Tests/"
  5537. ]
  5538. },
  5539. "notification-url": "https://packagist.org/downloads/",
  5540. "license": [
  5541. "MIT"
  5542. ],
  5543. "authors": [
  5544. {
  5545. "name": "Fabien Potencier",
  5546. "email": "fabien@symfony.com"
  5547. },
  5548. {
  5549. "name": "Symfony Community",
  5550. "homepage": "https://symfony.com/contributors"
  5551. }
  5552. ],
  5553. "description": "Symfony Process Component",
  5554. "homepage": "https://symfony.com",
  5555. "funding": [
  5556. {
  5557. "url": "https://symfony.com/sponsor",
  5558. "type": "custom"
  5559. },
  5560. {
  5561. "url": "https://github.com/fabpot",
  5562. "type": "github"
  5563. },
  5564. {
  5565. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5566. "type": "tidelift"
  5567. }
  5568. ],
  5569. "time": "2020-09-02T16:23:27+00:00"
  5570. },
  5571. {
  5572. "name": "symfony/routing",
  5573. "version": "v5.1.6",
  5574. "source": {
  5575. "type": "git",
  5576. "url": "https://github.com/symfony/routing.git",
  5577. "reference": "d36e06eb02a55522a8eed070c1cbc3dc3c389876"
  5578. },
  5579. "dist": {
  5580. "type": "zip",
  5581. "url": "https://api.github.com/repos/symfony/routing/zipball/d36e06eb02a55522a8eed070c1cbc3dc3c389876",
  5582. "reference": "d36e06eb02a55522a8eed070c1cbc3dc3c389876",
  5583. "shasum": ""
  5584. },
  5585. "require": {
  5586. "php": ">=7.2.5",
  5587. "symfony/deprecation-contracts": "^2.1",
  5588. "symfony/polyfill-php80": "^1.15"
  5589. },
  5590. "conflict": {
  5591. "symfony/config": "<5.0",
  5592. "symfony/dependency-injection": "<4.4",
  5593. "symfony/yaml": "<4.4"
  5594. },
  5595. "require-dev": {
  5596. "doctrine/annotations": "~1.2",
  5597. "psr/log": "~1.0",
  5598. "symfony/config": "^5.0",
  5599. "symfony/dependency-injection": "^4.4|^5.0",
  5600. "symfony/expression-language": "^4.4|^5.0",
  5601. "symfony/http-foundation": "^4.4|^5.0",
  5602. "symfony/yaml": "^4.4|^5.0"
  5603. },
  5604. "suggest": {
  5605. "doctrine/annotations": "For using the annotation loader",
  5606. "symfony/config": "For using the all-in-one router or any loader",
  5607. "symfony/expression-language": "For using expression matching",
  5608. "symfony/http-foundation": "For using a Symfony Request object",
  5609. "symfony/yaml": "For using the YAML loader"
  5610. },
  5611. "type": "library",
  5612. "extra": {
  5613. "branch-alias": {
  5614. "dev-master": "5.1-dev"
  5615. }
  5616. },
  5617. "autoload": {
  5618. "psr-4": {
  5619. "Symfony\\Component\\Routing\\": ""
  5620. },
  5621. "exclude-from-classmap": [
  5622. "/Tests/"
  5623. ]
  5624. },
  5625. "notification-url": "https://packagist.org/downloads/",
  5626. "license": [
  5627. "MIT"
  5628. ],
  5629. "authors": [
  5630. {
  5631. "name": "Fabien Potencier",
  5632. "email": "fabien@symfony.com"
  5633. },
  5634. {
  5635. "name": "Symfony Community",
  5636. "homepage": "https://symfony.com/contributors"
  5637. }
  5638. ],
  5639. "description": "Symfony Routing Component",
  5640. "homepage": "https://symfony.com",
  5641. "keywords": [
  5642. "router",
  5643. "routing",
  5644. "uri",
  5645. "url"
  5646. ],
  5647. "funding": [
  5648. {
  5649. "url": "https://symfony.com/sponsor",
  5650. "type": "custom"
  5651. },
  5652. {
  5653. "url": "https://github.com/fabpot",
  5654. "type": "github"
  5655. },
  5656. {
  5657. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5658. "type": "tidelift"
  5659. }
  5660. ],
  5661. "time": "2020-09-02T16:23:27+00:00"
  5662. },
  5663. {
  5664. "name": "symfony/service-contracts",
  5665. "version": "v2.2.0",
  5666. "source": {
  5667. "type": "git",
  5668. "url": "https://github.com/symfony/service-contracts.git",
  5669. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  5670. },
  5671. "dist": {
  5672. "type": "zip",
  5673. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  5674. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  5675. "shasum": ""
  5676. },
  5677. "require": {
  5678. "php": ">=7.2.5",
  5679. "psr/container": "^1.0"
  5680. },
  5681. "suggest": {
  5682. "symfony/service-implementation": ""
  5683. },
  5684. "type": "library",
  5685. "extra": {
  5686. "branch-alias": {
  5687. "dev-master": "2.2-dev"
  5688. },
  5689. "thanks": {
  5690. "name": "symfony/contracts",
  5691. "url": "https://github.com/symfony/contracts"
  5692. }
  5693. },
  5694. "autoload": {
  5695. "psr-4": {
  5696. "Symfony\\Contracts\\Service\\": ""
  5697. }
  5698. },
  5699. "notification-url": "https://packagist.org/downloads/",
  5700. "license": [
  5701. "MIT"
  5702. ],
  5703. "authors": [
  5704. {
  5705. "name": "Nicolas Grekas",
  5706. "email": "p@tchwork.com"
  5707. },
  5708. {
  5709. "name": "Symfony Community",
  5710. "homepage": "https://symfony.com/contributors"
  5711. }
  5712. ],
  5713. "description": "Generic abstractions related to writing services",
  5714. "homepage": "https://symfony.com",
  5715. "keywords": [
  5716. "abstractions",
  5717. "contracts",
  5718. "decoupling",
  5719. "interfaces",
  5720. "interoperability",
  5721. "standards"
  5722. ],
  5723. "support": {
  5724. "source": "https://github.com/symfony/service-contracts/tree/master"
  5725. },
  5726. "funding": [
  5727. {
  5728. "url": "https://symfony.com/sponsor",
  5729. "type": "custom"
  5730. },
  5731. {
  5732. "url": "https://github.com/fabpot",
  5733. "type": "github"
  5734. },
  5735. {
  5736. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5737. "type": "tidelift"
  5738. }
  5739. ],
  5740. "time": "2020-09-07T11:33:47+00:00"
  5741. },
  5742. {
  5743. "name": "symfony/string",
  5744. "version": "v5.1.6",
  5745. "source": {
  5746. "type": "git",
  5747. "url": "https://github.com/symfony/string.git",
  5748. "reference": "4a9afe9d07bac506f75bcee8ed3ce76da5a9343e"
  5749. },
  5750. "dist": {
  5751. "type": "zip",
  5752. "url": "https://api.github.com/repos/symfony/string/zipball/4a9afe9d07bac506f75bcee8ed3ce76da5a9343e",
  5753. "reference": "4a9afe9d07bac506f75bcee8ed3ce76da5a9343e",
  5754. "shasum": ""
  5755. },
  5756. "require": {
  5757. "php": ">=7.2.5",
  5758. "symfony/polyfill-ctype": "~1.8",
  5759. "symfony/polyfill-intl-grapheme": "~1.0",
  5760. "symfony/polyfill-intl-normalizer": "~1.0",
  5761. "symfony/polyfill-mbstring": "~1.0",
  5762. "symfony/polyfill-php80": "~1.15"
  5763. },
  5764. "require-dev": {
  5765. "symfony/error-handler": "^4.4|^5.0",
  5766. "symfony/http-client": "^4.4|^5.0",
  5767. "symfony/translation-contracts": "^1.1|^2",
  5768. "symfony/var-exporter": "^4.4|^5.0"
  5769. },
  5770. "type": "library",
  5771. "extra": {
  5772. "branch-alias": {
  5773. "dev-master": "5.1-dev"
  5774. }
  5775. },
  5776. "autoload": {
  5777. "psr-4": {
  5778. "Symfony\\Component\\String\\": ""
  5779. },
  5780. "files": [
  5781. "Resources/functions.php"
  5782. ],
  5783. "exclude-from-classmap": [
  5784. "/Tests/"
  5785. ]
  5786. },
  5787. "notification-url": "https://packagist.org/downloads/",
  5788. "license": [
  5789. "MIT"
  5790. ],
  5791. "authors": [
  5792. {
  5793. "name": "Nicolas Grekas",
  5794. "email": "p@tchwork.com"
  5795. },
  5796. {
  5797. "name": "Symfony Community",
  5798. "homepage": "https://symfony.com/contributors"
  5799. }
  5800. ],
  5801. "description": "Symfony String component",
  5802. "homepage": "https://symfony.com",
  5803. "keywords": [
  5804. "grapheme",
  5805. "i18n",
  5806. "string",
  5807. "unicode",
  5808. "utf-8",
  5809. "utf8"
  5810. ],
  5811. "funding": [
  5812. {
  5813. "url": "https://symfony.com/sponsor",
  5814. "type": "custom"
  5815. },
  5816. {
  5817. "url": "https://github.com/fabpot",
  5818. "type": "github"
  5819. },
  5820. {
  5821. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5822. "type": "tidelift"
  5823. }
  5824. ],
  5825. "time": "2020-09-15T12:23:47+00:00"
  5826. },
  5827. {
  5828. "name": "symfony/translation",
  5829. "version": "v5.1.6",
  5830. "source": {
  5831. "type": "git",
  5832. "url": "https://github.com/symfony/translation.git",
  5833. "reference": "e3cdd5119b1b5bf0698c351b8ee20fb5a4ea248b"
  5834. },
  5835. "dist": {
  5836. "type": "zip",
  5837. "url": "https://api.github.com/repos/symfony/translation/zipball/e3cdd5119b1b5bf0698c351b8ee20fb5a4ea248b",
  5838. "reference": "e3cdd5119b1b5bf0698c351b8ee20fb5a4ea248b",
  5839. "shasum": ""
  5840. },
  5841. "require": {
  5842. "php": ">=7.2.5",
  5843. "symfony/polyfill-mbstring": "~1.0",
  5844. "symfony/polyfill-php80": "^1.15",
  5845. "symfony/translation-contracts": "^2"
  5846. },
  5847. "conflict": {
  5848. "symfony/config": "<4.4",
  5849. "symfony/dependency-injection": "<5.0",
  5850. "symfony/http-kernel": "<5.0",
  5851. "symfony/twig-bundle": "<5.0",
  5852. "symfony/yaml": "<4.4"
  5853. },
  5854. "provide": {
  5855. "symfony/translation-implementation": "2.0"
  5856. },
  5857. "require-dev": {
  5858. "psr/log": "~1.0",
  5859. "symfony/config": "^4.4|^5.0",
  5860. "symfony/console": "^4.4|^5.0",
  5861. "symfony/dependency-injection": "^5.0",
  5862. "symfony/finder": "^4.4|^5.0",
  5863. "symfony/http-kernel": "^5.0",
  5864. "symfony/intl": "^4.4|^5.0",
  5865. "symfony/service-contracts": "^1.1.2|^2",
  5866. "symfony/yaml": "^4.4|^5.0"
  5867. },
  5868. "suggest": {
  5869. "psr/log-implementation": "To use logging capability in translator",
  5870. "symfony/config": "",
  5871. "symfony/yaml": ""
  5872. },
  5873. "type": "library",
  5874. "extra": {
  5875. "branch-alias": {
  5876. "dev-master": "5.1-dev"
  5877. }
  5878. },
  5879. "autoload": {
  5880. "psr-4": {
  5881. "Symfony\\Component\\Translation\\": ""
  5882. },
  5883. "exclude-from-classmap": [
  5884. "/Tests/"
  5885. ]
  5886. },
  5887. "notification-url": "https://packagist.org/downloads/",
  5888. "license": [
  5889. "MIT"
  5890. ],
  5891. "authors": [
  5892. {
  5893. "name": "Fabien Potencier",
  5894. "email": "fabien@symfony.com"
  5895. },
  5896. {
  5897. "name": "Symfony Community",
  5898. "homepage": "https://symfony.com/contributors"
  5899. }
  5900. ],
  5901. "description": "Symfony Translation Component",
  5902. "homepage": "https://symfony.com",
  5903. "funding": [
  5904. {
  5905. "url": "https://symfony.com/sponsor",
  5906. "type": "custom"
  5907. },
  5908. {
  5909. "url": "https://github.com/fabpot",
  5910. "type": "github"
  5911. },
  5912. {
  5913. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5914. "type": "tidelift"
  5915. }
  5916. ],
  5917. "time": "2020-09-27T03:44:28+00:00"
  5918. },
  5919. {
  5920. "name": "symfony/translation-contracts",
  5921. "version": "v2.2.0",
  5922. "source": {
  5923. "type": "git",
  5924. "url": "https://github.com/symfony/translation-contracts.git",
  5925. "reference": "77ce1c3627c9f39643acd9af086631f842c50c4d"
  5926. },
  5927. "dist": {
  5928. "type": "zip",
  5929. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/77ce1c3627c9f39643acd9af086631f842c50c4d",
  5930. "reference": "77ce1c3627c9f39643acd9af086631f842c50c4d",
  5931. "shasum": ""
  5932. },
  5933. "require": {
  5934. "php": ">=7.2.5"
  5935. },
  5936. "suggest": {
  5937. "symfony/translation-implementation": ""
  5938. },
  5939. "type": "library",
  5940. "extra": {
  5941. "branch-alias": {
  5942. "dev-master": "2.2-dev"
  5943. },
  5944. "thanks": {
  5945. "name": "symfony/contracts",
  5946. "url": "https://github.com/symfony/contracts"
  5947. }
  5948. },
  5949. "autoload": {
  5950. "psr-4": {
  5951. "Symfony\\Contracts\\Translation\\": ""
  5952. }
  5953. },
  5954. "notification-url": "https://packagist.org/downloads/",
  5955. "license": [
  5956. "MIT"
  5957. ],
  5958. "authors": [
  5959. {
  5960. "name": "Nicolas Grekas",
  5961. "email": "p@tchwork.com"
  5962. },
  5963. {
  5964. "name": "Symfony Community",
  5965. "homepage": "https://symfony.com/contributors"
  5966. }
  5967. ],
  5968. "description": "Generic abstractions related to translation",
  5969. "homepage": "https://symfony.com",
  5970. "keywords": [
  5971. "abstractions",
  5972. "contracts",
  5973. "decoupling",
  5974. "interfaces",
  5975. "interoperability",
  5976. "standards"
  5977. ],
  5978. "support": {
  5979. "source": "https://github.com/symfony/translation-contracts/tree/master"
  5980. },
  5981. "funding": [
  5982. {
  5983. "url": "https://symfony.com/sponsor",
  5984. "type": "custom"
  5985. },
  5986. {
  5987. "url": "https://github.com/fabpot",
  5988. "type": "github"
  5989. },
  5990. {
  5991. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5992. "type": "tidelift"
  5993. }
  5994. ],
  5995. "time": "2020-09-07T11:33:47+00:00"
  5996. },
  5997. {
  5998. "name": "symfony/var-dumper",
  5999. "version": "v5.1.6",
  6000. "source": {
  6001. "type": "git",
  6002. "url": "https://github.com/symfony/var-dumper.git",
  6003. "reference": "c976c115a0d788808f7e71834c8eb0844f678d02"
  6004. },
  6005. "dist": {
  6006. "type": "zip",
  6007. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/c976c115a0d788808f7e71834c8eb0844f678d02",
  6008. "reference": "c976c115a0d788808f7e71834c8eb0844f678d02",
  6009. "shasum": ""
  6010. },
  6011. "require": {
  6012. "php": ">=7.2.5",
  6013. "symfony/polyfill-mbstring": "~1.0",
  6014. "symfony/polyfill-php80": "^1.15"
  6015. },
  6016. "conflict": {
  6017. "phpunit/phpunit": "<5.4.3",
  6018. "symfony/console": "<4.4"
  6019. },
  6020. "require-dev": {
  6021. "ext-iconv": "*",
  6022. "symfony/console": "^4.4|^5.0",
  6023. "symfony/process": "^4.4|^5.0",
  6024. "twig/twig": "^2.4|^3.0"
  6025. },
  6026. "suggest": {
  6027. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6028. "ext-intl": "To show region name in time zone dump",
  6029. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6030. },
  6031. "bin": [
  6032. "Resources/bin/var-dump-server"
  6033. ],
  6034. "type": "library",
  6035. "extra": {
  6036. "branch-alias": {
  6037. "dev-master": "5.1-dev"
  6038. }
  6039. },
  6040. "autoload": {
  6041. "files": [
  6042. "Resources/functions/dump.php"
  6043. ],
  6044. "psr-4": {
  6045. "Symfony\\Component\\VarDumper\\": ""
  6046. },
  6047. "exclude-from-classmap": [
  6048. "/Tests/"
  6049. ]
  6050. },
  6051. "notification-url": "https://packagist.org/downloads/",
  6052. "license": [
  6053. "MIT"
  6054. ],
  6055. "authors": [
  6056. {
  6057. "name": "Nicolas Grekas",
  6058. "email": "p@tchwork.com"
  6059. },
  6060. {
  6061. "name": "Symfony Community",
  6062. "homepage": "https://symfony.com/contributors"
  6063. }
  6064. ],
  6065. "description": "Symfony mechanism for exploring and dumping PHP variables",
  6066. "homepage": "https://symfony.com",
  6067. "keywords": [
  6068. "debug",
  6069. "dump"
  6070. ],
  6071. "funding": [
  6072. {
  6073. "url": "https://symfony.com/sponsor",
  6074. "type": "custom"
  6075. },
  6076. {
  6077. "url": "https://github.com/fabpot",
  6078. "type": "github"
  6079. },
  6080. {
  6081. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6082. "type": "tidelift"
  6083. }
  6084. ],
  6085. "time": "2020-09-18T14:27:32+00:00"
  6086. },
  6087. {
  6088. "name": "tijsverkoyen/css-to-inline-styles",
  6089. "version": "2.2.3",
  6090. "source": {
  6091. "type": "git",
  6092. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  6093. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  6094. },
  6095. "dist": {
  6096. "type": "zip",
  6097. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  6098. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  6099. "shasum": ""
  6100. },
  6101. "require": {
  6102. "ext-dom": "*",
  6103. "ext-libxml": "*",
  6104. "php": "^5.5 || ^7.0 || ^8.0",
  6105. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  6106. },
  6107. "require-dev": {
  6108. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  6109. },
  6110. "type": "library",
  6111. "extra": {
  6112. "branch-alias": {
  6113. "dev-master": "2.2.x-dev"
  6114. }
  6115. },
  6116. "autoload": {
  6117. "psr-4": {
  6118. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  6119. }
  6120. },
  6121. "notification-url": "https://packagist.org/downloads/",
  6122. "license": [
  6123. "BSD-3-Clause"
  6124. ],
  6125. "authors": [
  6126. {
  6127. "name": "Tijs Verkoyen",
  6128. "email": "css_to_inline_styles@verkoyen.eu",
  6129. "role": "Developer"
  6130. }
  6131. ],
  6132. "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.",
  6133. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  6134. "time": "2020-07-13T06:12:54+00:00"
  6135. },
  6136. {
  6137. "name": "vlucas/phpdotenv",
  6138. "version": "v4.1.8",
  6139. "source": {
  6140. "type": "git",
  6141. "url": "https://github.com/vlucas/phpdotenv.git",
  6142. "reference": "572af79d913627a9d70374d27a6f5d689a35de32"
  6143. },
  6144. "dist": {
  6145. "type": "zip",
  6146. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/572af79d913627a9d70374d27a6f5d689a35de32",
  6147. "reference": "572af79d913627a9d70374d27a6f5d689a35de32",
  6148. "shasum": ""
  6149. },
  6150. "require": {
  6151. "php": "^5.5.9 || ^7.0 || ^8.0",
  6152. "phpoption/phpoption": "^1.7.3",
  6153. "symfony/polyfill-ctype": "^1.17"
  6154. },
  6155. "require-dev": {
  6156. "bamarni/composer-bin-plugin": "^1.4.1",
  6157. "ext-filter": "*",
  6158. "ext-pcre": "*",
  6159. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0"
  6160. },
  6161. "suggest": {
  6162. "ext-filter": "Required to use the boolean validator.",
  6163. "ext-pcre": "Required to use most of the library."
  6164. },
  6165. "type": "library",
  6166. "extra": {
  6167. "branch-alias": {
  6168. "dev-master": "4.1-dev"
  6169. }
  6170. },
  6171. "autoload": {
  6172. "psr-4": {
  6173. "Dotenv\\": "src/"
  6174. }
  6175. },
  6176. "notification-url": "https://packagist.org/downloads/",
  6177. "license": [
  6178. "BSD-3-Clause"
  6179. ],
  6180. "authors": [
  6181. {
  6182. "name": "Graham Campbell",
  6183. "email": "graham@alt-three.com",
  6184. "homepage": "https://gjcampbell.co.uk/"
  6185. },
  6186. {
  6187. "name": "Vance Lucas",
  6188. "email": "vance@vancelucas.com",
  6189. "homepage": "https://vancelucas.com/"
  6190. }
  6191. ],
  6192. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6193. "keywords": [
  6194. "dotenv",
  6195. "env",
  6196. "environment"
  6197. ],
  6198. "funding": [
  6199. {
  6200. "url": "https://github.com/GrahamCampbell",
  6201. "type": "github"
  6202. },
  6203. {
  6204. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  6205. "type": "tidelift"
  6206. }
  6207. ],
  6208. "time": "2020-07-14T19:22:52+00:00"
  6209. },
  6210. {
  6211. "name": "voku/portable-ascii",
  6212. "version": "1.5.3",
  6213. "source": {
  6214. "type": "git",
  6215. "url": "https://github.com/voku/portable-ascii.git",
  6216. "reference": "25bcbf01678930251fd572891447d9e318a6e2b8"
  6217. },
  6218. "dist": {
  6219. "type": "zip",
  6220. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/25bcbf01678930251fd572891447d9e318a6e2b8",
  6221. "reference": "25bcbf01678930251fd572891447d9e318a6e2b8",
  6222. "shasum": ""
  6223. },
  6224. "require": {
  6225. "php": ">=7.0.0"
  6226. },
  6227. "require-dev": {
  6228. "phpunit/phpunit": "~6.0 || ~7.0"
  6229. },
  6230. "suggest": {
  6231. "ext-intl": "Use Intl for transliterator_transliterate() support"
  6232. },
  6233. "type": "library",
  6234. "autoload": {
  6235. "psr-4": {
  6236. "voku\\": "src/voku/"
  6237. }
  6238. },
  6239. "notification-url": "https://packagist.org/downloads/",
  6240. "license": [
  6241. "MIT"
  6242. ],
  6243. "authors": [
  6244. {
  6245. "name": "Lars Moelleken",
  6246. "homepage": "http://www.moelleken.org/"
  6247. }
  6248. ],
  6249. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  6250. "homepage": "https://github.com/voku/portable-ascii",
  6251. "keywords": [
  6252. "ascii",
  6253. "clean",
  6254. "php"
  6255. ],
  6256. "funding": [
  6257. {
  6258. "url": "https://www.paypal.me/moelleken",
  6259. "type": "custom"
  6260. },
  6261. {
  6262. "url": "https://github.com/voku",
  6263. "type": "github"
  6264. },
  6265. {
  6266. "url": "https://opencollective.com/portable-ascii",
  6267. "type": "open_collective"
  6268. },
  6269. {
  6270. "url": "https://www.patreon.com/voku",
  6271. "type": "patreon"
  6272. },
  6273. {
  6274. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  6275. "type": "tidelift"
  6276. }
  6277. ],
  6278. "time": "2020-07-22T23:32:04+00:00"
  6279. },
  6280. {
  6281. "name": "xhat/payjs",
  6282. "version": "1.5.0",
  6283. "source": {
  6284. "type": "git",
  6285. "url": "https://github.com/xhat/payjs.git",
  6286. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364"
  6287. },
  6288. "dist": {
  6289. "type": "zip",
  6290. "url": "https://api.github.com/repos/xhat/payjs/zipball/d15b678f7fb70fc70bafa82c5a7896fceebad364",
  6291. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364",
  6292. "shasum": ""
  6293. },
  6294. "type": "library",
  6295. "autoload": {
  6296. "psr-4": {
  6297. "Xhat\\Payjs\\": "src/"
  6298. }
  6299. },
  6300. "notification-url": "https://packagist.org/downloads/",
  6301. "license": [
  6302. "MIT"
  6303. ],
  6304. "authors": [
  6305. {
  6306. "name": "andy",
  6307. "email": "andy@popfeng.com"
  6308. }
  6309. ],
  6310. "description": "本项目是基于 PAYJS 的 API 开发的 Composer Package,可直接用于生产环境 https://payjs.cn",
  6311. "support": {
  6312. "issues": "https://github.com/xhat/payjs/issues",
  6313. "source": "https://github.com/xhat/payjs/tree/1.5.0"
  6314. },
  6315. "funding": [
  6316. {
  6317. "url": "https://payjs.cn/sponsor/dajjxz",
  6318. "type": "custom"
  6319. }
  6320. ],
  6321. "time": "2020-09-11T06:02:42+00:00"
  6322. },
  6323. {
  6324. "name": "zbrettonye/geetest",
  6325. "version": "v1.1.0",
  6326. "source": {
  6327. "type": "git",
  6328. "url": "https://github.com/ZBrettonYe/geetest.git",
  6329. "reference": "98339e279526b6c693d8a66edbe3ebf05e800a91"
  6330. },
  6331. "dist": {
  6332. "type": "zip",
  6333. "url": "https://api.github.com/repos/ZBrettonYe/geetest/zipball/98339e279526b6c693d8a66edbe3ebf05e800a91",
  6334. "reference": "98339e279526b6c693d8a66edbe3ebf05e800a91",
  6335. "shasum": ""
  6336. },
  6337. "require": {
  6338. "illuminate/routing": "^5.5 || ^6 || ^7",
  6339. "illuminate/support": "^5.5 || ^6 || ^7",
  6340. "php": "^7.3"
  6341. },
  6342. "require-dev": {
  6343. "mockery/mockery": "^1.4",
  6344. "phpunit/phpunit": "^9.0"
  6345. },
  6346. "type": "library",
  6347. "extra": {
  6348. "laravel": {
  6349. "providers": [
  6350. "ZBrettonYe\\Geetest\\GeetestServiceProvider"
  6351. ],
  6352. "aliases": {
  6353. "Geetest": "ZBrettonYe\\Geetest\\Geetest"
  6354. }
  6355. }
  6356. },
  6357. "autoload": {
  6358. "psr-4": {
  6359. "ZBrettonYe\\Geetest\\": "src/"
  6360. }
  6361. },
  6362. "notification-url": "https://packagist.org/downloads/",
  6363. "license": [
  6364. "MIT"
  6365. ],
  6366. "authors": [
  6367. {
  6368. "name": "zbrettonye",
  6369. "email": "monkeyblacktech97@gmail.com"
  6370. }
  6371. ],
  6372. "description": "Geetest Package for Laravel",
  6373. "keywords": [
  6374. "geetest",
  6375. "laravel"
  6376. ],
  6377. "time": "2020-09-03T04:24:48+00:00"
  6378. },
  6379. {
  6380. "name": "zbrettonye/hcaptcha",
  6381. "version": "v1.0",
  6382. "source": {
  6383. "type": "git",
  6384. "url": "https://github.com/ZBrettonYe/hcaptcha.git",
  6385. "reference": "eef47bd522c927a8abe5d3ec0fd8ad47723799fa"
  6386. },
  6387. "dist": {
  6388. "type": "zip",
  6389. "url": "https://api.github.com/repos/ZBrettonYe/hcaptcha/zipball/eef47bd522c927a8abe5d3ec0fd8ad47723799fa",
  6390. "reference": "eef47bd522c927a8abe5d3ec0fd8ad47723799fa",
  6391. "shasum": ""
  6392. },
  6393. "require": {
  6394. "guzzlehttp/guzzle": "^6.2|^7.0",
  6395. "illuminate/support": "^5.5 || ^6 || ^7",
  6396. "php": ">=5.5.5"
  6397. },
  6398. "require-dev": {
  6399. "phpunit/phpunit": "~4.8"
  6400. },
  6401. "type": "library",
  6402. "extra": {
  6403. "laravel": {
  6404. "providers": [
  6405. "ZBrettonYe\\HCaptcha\\HCaptchaServiceProvider"
  6406. ],
  6407. "aliases": {
  6408. "HCaptcha": "ZBrettonYe\\HCaptcha\\Facades\\HCaptcha"
  6409. }
  6410. }
  6411. },
  6412. "autoload": {
  6413. "psr-4": {
  6414. "ZBrettonYe\\HCaptcha\\": "src/"
  6415. }
  6416. },
  6417. "notification-url": "https://packagist.org/downloads/",
  6418. "license": [
  6419. "MIT"
  6420. ],
  6421. "authors": [
  6422. {
  6423. "name": "zbrettonye",
  6424. "email": "monkeyblacktech97@gmail.com"
  6425. }
  6426. ],
  6427. "description": "hCaptcha For Laravel5~7",
  6428. "keywords": [
  6429. "captcha",
  6430. "hcaptcha",
  6431. "laravel"
  6432. ],
  6433. "time": "2020-09-03T05:00:52+00:00"
  6434. },
  6435. {
  6436. "name": "zbrettonye/no-captcha",
  6437. "version": "v1.0.4",
  6438. "source": {
  6439. "type": "git",
  6440. "url": "https://github.com/ZBrettonYe/no-captcha.git",
  6441. "reference": "b3753565cacf0fb80fb6472ddfbbd3fc576d0ef3"
  6442. },
  6443. "dist": {
  6444. "type": "zip",
  6445. "url": "https://api.github.com/repos/ZBrettonYe/no-captcha/zipball/b3753565cacf0fb80fb6472ddfbbd3fc576d0ef3",
  6446. "reference": "b3753565cacf0fb80fb6472ddfbbd3fc576d0ef3",
  6447. "shasum": ""
  6448. },
  6449. "require": {
  6450. "guzzlehttp/guzzle": "^6.2|^7.0",
  6451. "illuminate/support": "^5.0|^6.0|^7.0",
  6452. "php": ">=5.5.5"
  6453. },
  6454. "require-dev": {
  6455. "phpunit/phpunit": "~4.8"
  6456. },
  6457. "type": "library",
  6458. "extra": {
  6459. "laravel": {
  6460. "providers": [
  6461. "ZBrettonYe\\NoCaptcha\\NoCaptchaServiceProvider"
  6462. ],
  6463. "aliases": {
  6464. "NoCaptcha": "ZBrettonYe\\NoCaptcha\\Facades\\NoCaptcha"
  6465. }
  6466. }
  6467. },
  6468. "autoload": {
  6469. "psr-4": {
  6470. "ZBrettonYe\\NoCaptcha\\": "src/"
  6471. }
  6472. },
  6473. "notification-url": "https://packagist.org/downloads/",
  6474. "license": [
  6475. "MIT"
  6476. ],
  6477. "authors": [
  6478. {
  6479. "name": "zbrettonye",
  6480. "email": "monkeyblacktech97@gmail.com"
  6481. }
  6482. ],
  6483. "description": "No CAPTCHA reCAPTCHA For Laravel.",
  6484. "keywords": [
  6485. "captcha",
  6486. "laravel",
  6487. "laravel4",
  6488. "laravel5",
  6489. "laravel6",
  6490. "no-captcha",
  6491. "recaptcha"
  6492. ],
  6493. "time": "2020-09-03T04:37:04+00:00"
  6494. },
  6495. {
  6496. "name": "zoujingli/ip2region",
  6497. "version": "v1.0.8",
  6498. "source": {
  6499. "type": "git",
  6500. "url": "https://github.com/zoujingli/ip2region.git",
  6501. "reference": "d6be3ab9da1a1ab7e3cd51c4aa634a34de358ce6"
  6502. },
  6503. "dist": {
  6504. "type": "zip",
  6505. "url": "https://api.github.com/repos/zoujingli/ip2region/zipball/d6be3ab9da1a1ab7e3cd51c4aa634a34de358ce6",
  6506. "reference": "d6be3ab9da1a1ab7e3cd51c4aa634a34de358ce6",
  6507. "shasum": ""
  6508. },
  6509. "require": {
  6510. "php": ">=5.3"
  6511. },
  6512. "type": "library",
  6513. "autoload": {
  6514. "classmap": [
  6515. "Ip2Region.php"
  6516. ]
  6517. },
  6518. "notification-url": "https://packagist.org/downloads/",
  6519. "license": [
  6520. "Apache-2.0"
  6521. ],
  6522. "authors": [
  6523. {
  6524. "name": "Anyon",
  6525. "email": "zoujingli@qq.com",
  6526. "homepage": "http://ctolog.com"
  6527. }
  6528. ],
  6529. "description": "Ip2Region for PHP",
  6530. "homepage": "https://github.com/zoujingli/Ip2Region",
  6531. "keywords": [
  6532. "Ip2Region"
  6533. ],
  6534. "time": "2020-07-06T05:33:26+00:00"
  6535. }
  6536. ],
  6537. "packages-dev": [
  6538. {
  6539. "name": "andrey-helldar/laravel-lang-publisher",
  6540. "version": "v6.0.2",
  6541. "source": {
  6542. "type": "git",
  6543. "url": "https://github.com/andrey-helldar/laravel-lang-publisher.git",
  6544. "reference": "7efc1bef0b67962db53c05dabf2eb0f09559be3a"
  6545. },
  6546. "dist": {
  6547. "type": "zip",
  6548. "url": "https://api.github.com/repos/andrey-helldar/laravel-lang-publisher/zipball/7efc1bef0b67962db53c05dabf2eb0f09559be3a",
  6549. "reference": "7efc1bef0b67962db53c05dabf2eb0f09559be3a",
  6550. "shasum": ""
  6551. },
  6552. "require": {
  6553. "andrey-helldar/pretty-array": "^1.4.2",
  6554. "andrey-helldar/support": "^1.4.1",
  6555. "ext-json": "*",
  6556. "illuminate/console": "^7.0|^8.0",
  6557. "illuminate/support": "^7.0|^8.0",
  6558. "laravel-lang/lang": "^7.0",
  6559. "php": "^7.2.5"
  6560. },
  6561. "require-dev": {
  6562. "mockery/mockery": "^1.3.1",
  6563. "orchestra/testbench": "^5.0|^6.0",
  6564. "phpunit/phpunit": "^8.4|^9.0"
  6565. },
  6566. "suggest": {
  6567. "andrey-helldar/lang-translations": "Translation of main messages",
  6568. "laravel/jetstream": "Tailwind scaffolding for the Laravel framework.",
  6569. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  6570. },
  6571. "type": "library",
  6572. "extra": {
  6573. "laravel": {
  6574. "providers": [
  6575. "Helldar\\LaravelLangPublisher\\ServiceProvider"
  6576. ]
  6577. }
  6578. },
  6579. "autoload": {
  6580. "psr-4": {
  6581. "Helldar\\LaravelLangPublisher\\": "src"
  6582. }
  6583. },
  6584. "notification-url": "https://packagist.org/downloads/",
  6585. "license": [
  6586. "MIT"
  6587. ],
  6588. "authors": [
  6589. {
  6590. "name": "Andrey Helldar",
  6591. "email": "helldar@ai-rus.com"
  6592. }
  6593. ],
  6594. "description": "Publisher lang files for the Laravel Framework + Laravel Jetstream from Laravel-Lang/lang",
  6595. "keywords": [
  6596. "i18n",
  6597. "jetstream",
  6598. "lang",
  6599. "languages",
  6600. "laravel",
  6601. "locale",
  6602. "localisation",
  6603. "localization",
  6604. "lpm",
  6605. "lumen",
  6606. "publisher",
  6607. "trans",
  6608. "translations",
  6609. "validations"
  6610. ],
  6611. "funding": [
  6612. {
  6613. "url": "https://money.yandex.ru/to/410012115955701",
  6614. "type": "custom"
  6615. },
  6616. {
  6617. "url": "https://paypal.me/helldar",
  6618. "type": "custom"
  6619. }
  6620. ],
  6621. "time": "2020-09-20T10:58:47+00:00"
  6622. },
  6623. {
  6624. "name": "andrey-helldar/pretty-array",
  6625. "version": "v1.4.3",
  6626. "source": {
  6627. "type": "git",
  6628. "url": "https://github.com/andrey-helldar/pretty-array.git",
  6629. "reference": "9a173df74949d8206a03d96999f0c838ca4e82c4"
  6630. },
  6631. "dist": {
  6632. "type": "zip",
  6633. "url": "https://api.github.com/repos/andrey-helldar/pretty-array/zipball/9a173df74949d8206a03d96999f0c838ca4e82c4",
  6634. "reference": "9a173df74949d8206a03d96999f0c838ca4e82c4",
  6635. "shasum": ""
  6636. },
  6637. "require": {
  6638. "andrey-helldar/support": "^1.16.0",
  6639. "ext-dom": "*",
  6640. "ext-mbstring": "*",
  6641. "php": "^7.1.3"
  6642. },
  6643. "require-dev": {
  6644. "phpstan/phpstan": "^0.12.7",
  6645. "phpunit/phpunit": "^7.0|^8.0"
  6646. },
  6647. "suggest": {
  6648. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  6649. },
  6650. "type": "library",
  6651. "autoload": {
  6652. "psr-4": {
  6653. "Helldar\\PrettyArray\\": "src/"
  6654. }
  6655. },
  6656. "notification-url": "https://packagist.org/downloads/",
  6657. "license": [
  6658. "MIT"
  6659. ],
  6660. "authors": [
  6661. {
  6662. "name": "Andrey Helldar",
  6663. "email": "helldar@ai-rus.com"
  6664. }
  6665. ],
  6666. "description": "Simple conversion of an array to a pretty view.",
  6667. "keywords": [
  6668. "array",
  6669. "pretty",
  6670. "pretty array"
  6671. ],
  6672. "funding": [
  6673. {
  6674. "url": "https://money.yandex.ru/to/410012115955701",
  6675. "type": "custom"
  6676. },
  6677. {
  6678. "url": "https://paypal.me/helldar",
  6679. "type": "custom"
  6680. }
  6681. ],
  6682. "time": "2020-07-24T15:19:50+00:00"
  6683. },
  6684. {
  6685. "name": "andrey-helldar/support",
  6686. "version": "v1.21.0",
  6687. "source": {
  6688. "type": "git",
  6689. "url": "https://github.com/andrey-helldar/support.git",
  6690. "reference": "3c1455584e4d1afc542f3da075987b54fc1ad05f"
  6691. },
  6692. "dist": {
  6693. "type": "zip",
  6694. "url": "https://api.github.com/repos/andrey-helldar/support/zipball/3c1455584e4d1afc542f3da075987b54fc1ad05f",
  6695. "reference": "3c1455584e4d1afc542f3da075987b54fc1ad05f",
  6696. "shasum": ""
  6697. },
  6698. "require": {
  6699. "ext-ctype": "*",
  6700. "ext-dom": "*",
  6701. "ext-json": "*",
  6702. "ext-mbstring": "*",
  6703. "php": "^7.1.3"
  6704. },
  6705. "require-dev": {
  6706. "ext-bcmath": "*",
  6707. "phpunit/phpunit": "^8.0|^9.0"
  6708. },
  6709. "suggest": {
  6710. "andrey-helldar/laravel-support": "Various helper files for the Laravel and Lumen frameworks",
  6711. "ext-bcmath": "Require the extension if you will be using Helldar\\Support\\Facades\\Digit.",
  6712. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  6713. },
  6714. "type": "library",
  6715. "extra": {
  6716. "laravel": {
  6717. "providers": [
  6718. "Helldar\\Support\\ServiceProvider"
  6719. ]
  6720. }
  6721. },
  6722. "autoload": {
  6723. "psr-4": {
  6724. "Helldar\\Support\\": "src/"
  6725. },
  6726. "files": [
  6727. "src/helpers/digit.php",
  6728. "src/helpers/dumper.php",
  6729. "src/helpers/http.php",
  6730. "src/helpers/strings.php"
  6731. ]
  6732. },
  6733. "notification-url": "https://packagist.org/downloads/",
  6734. "license": [
  6735. "MIT"
  6736. ],
  6737. "authors": [
  6738. {
  6739. "name": "Andrey Helldar",
  6740. "email": "helldar@ai-rus.com"
  6741. }
  6742. ],
  6743. "description": "Support package is a collection of helpers and tools for projects.",
  6744. "keywords": [
  6745. "framework",
  6746. "laravel",
  6747. "support",
  6748. "symfony",
  6749. "yii",
  6750. "yii2"
  6751. ],
  6752. "funding": [
  6753. {
  6754. "url": "https://money.yandex.ru/to/410012115955701",
  6755. "type": "custom"
  6756. },
  6757. {
  6758. "url": "https://paypal.me/helldar",
  6759. "type": "custom"
  6760. }
  6761. ],
  6762. "time": "2020-07-24T14:17:57+00:00"
  6763. },
  6764. {
  6765. "name": "arcanedev/laravel-lang",
  6766. "version": "8.0.0",
  6767. "source": {
  6768. "type": "git",
  6769. "url": "https://github.com/ARCANEDEV/LaravelLang.git",
  6770. "reference": "8b1711a37bbab081973920ad19a729dc0df2ca4b"
  6771. },
  6772. "dist": {
  6773. "type": "zip",
  6774. "url": "https://api.github.com/repos/ARCANEDEV/LaravelLang/zipball/8b1711a37bbab081973920ad19a729dc0df2ca4b",
  6775. "reference": "8b1711a37bbab081973920ad19a729dc0df2ca4b",
  6776. "shasum": ""
  6777. },
  6778. "require": {
  6779. "arcanedev/support": "^7.1.2",
  6780. "caouecs/laravel-lang": "^6.0",
  6781. "php": "^7.2.5"
  6782. },
  6783. "require-dev": {
  6784. "mockery/mockery": "^1.3.1",
  6785. "orchestra/testbench": "^5.0",
  6786. "phpunit/phpunit": "^8.5|^9.0"
  6787. },
  6788. "type": "library",
  6789. "extra": {
  6790. "laravel": {
  6791. "providers": [
  6792. "Arcanedev\\LaravelLang\\LaravelLangServiceProvider",
  6793. "Arcanedev\\LaravelLang\\Providers\\DeferredServicesProvider",
  6794. "Arcanedev\\LaravelLang\\Providers\\TranslationServiceProvider"
  6795. ]
  6796. }
  6797. },
  6798. "autoload": {
  6799. "psr-4": {
  6800. "Arcanedev\\LaravelLang\\": "src/"
  6801. }
  6802. },
  6803. "notification-url": "https://packagist.org/downloads/",
  6804. "license": [
  6805. "MIT"
  6806. ],
  6807. "authors": [
  6808. {
  6809. "name": "ARCANEDEV",
  6810. "email": "arcanedev.maroc@gmail.com",
  6811. "homepage": "https://github.com/arcanedev-maroc",
  6812. "role": "Developer"
  6813. }
  6814. ],
  6815. "description": "Translations manager and checker for Laravel 5 based on 'caouecs/laravel4-lang' package.",
  6816. "homepage": "https://github.com/ARCANEDEV/LaravelLang",
  6817. "keywords": [
  6818. "arcanedev",
  6819. "lang",
  6820. "languages",
  6821. "laravel",
  6822. "localisation",
  6823. "localization",
  6824. "trans",
  6825. "translations",
  6826. "validations"
  6827. ],
  6828. "time": "2020-03-21T21:29:29+00:00"
  6829. },
  6830. {
  6831. "name": "arcanedev/support",
  6832. "version": "7.1.2",
  6833. "source": {
  6834. "type": "git",
  6835. "url": "https://github.com/ARCANEDEV/Support.git",
  6836. "reference": "7e4199d30f04c611ba5d895e663f111c217ff5a3"
  6837. },
  6838. "dist": {
  6839. "type": "zip",
  6840. "url": "https://api.github.com/repos/ARCANEDEV/Support/zipball/7e4199d30f04c611ba5d895e663f111c217ff5a3",
  6841. "reference": "7e4199d30f04c611ba5d895e663f111c217ff5a3",
  6842. "shasum": ""
  6843. },
  6844. "require": {
  6845. "illuminate/filesystem": "^7.0",
  6846. "illuminate/support": "^7.0",
  6847. "php": "^7.2.5"
  6848. },
  6849. "require-dev": {
  6850. "orchestra/testbench": "^5.0",
  6851. "phpunit/phpunit": "^8.0|^9.0"
  6852. },
  6853. "type": "library",
  6854. "extra": {
  6855. "branch-alias": {
  6856. "dev-master": "7.x-dev"
  6857. }
  6858. },
  6859. "autoload": {
  6860. "psr-4": {
  6861. "Arcanedev\\Support\\": "src/"
  6862. },
  6863. "files": [
  6864. "helpers.php"
  6865. ]
  6866. },
  6867. "notification-url": "https://packagist.org/downloads/",
  6868. "license": [
  6869. "MIT"
  6870. ],
  6871. "authors": [
  6872. {
  6873. "name": "ARCANEDEV",
  6874. "email": "arcanedev.maroc@gmail.com",
  6875. "homepage": "https://github.com/arcanedev-maroc"
  6876. }
  6877. ],
  6878. "description": "ARCANEDEV Support Helpers",
  6879. "homepage": "https://github.com/ARCANEDEV/Support",
  6880. "keywords": [
  6881. "arcanedev",
  6882. "arcanesoft",
  6883. "laravel",
  6884. "support"
  6885. ],
  6886. "time": "2020-03-12T09:28:19+00:00"
  6887. },
  6888. {
  6889. "name": "barryvdh/laravel-debugbar",
  6890. "version": "v3.5.1",
  6891. "source": {
  6892. "type": "git",
  6893. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  6894. "reference": "233c10688f4c1a6e66ed2ef123038b1363d1bedc"
  6895. },
  6896. "dist": {
  6897. "type": "zip",
  6898. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/233c10688f4c1a6e66ed2ef123038b1363d1bedc",
  6899. "reference": "233c10688f4c1a6e66ed2ef123038b1363d1bedc",
  6900. "shasum": ""
  6901. },
  6902. "require": {
  6903. "illuminate/routing": "^6|^7|^8",
  6904. "illuminate/session": "^6|^7|^8",
  6905. "illuminate/support": "^6|^7|^8",
  6906. "maximebf/debugbar": "^1.16.3",
  6907. "php": ">=7.2",
  6908. "symfony/debug": "^4.3|^5",
  6909. "symfony/finder": "^4.3|^5"
  6910. },
  6911. "require-dev": {
  6912. "orchestra/testbench-dusk": "^4|^5|^6",
  6913. "phpunit/phpunit": "^8.5|^9.0",
  6914. "squizlabs/php_codesniffer": "^3.5"
  6915. },
  6916. "type": "library",
  6917. "extra": {
  6918. "branch-alias": {
  6919. "dev-master": "3.5-dev"
  6920. },
  6921. "laravel": {
  6922. "providers": [
  6923. "Barryvdh\\Debugbar\\ServiceProvider"
  6924. ],
  6925. "aliases": {
  6926. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  6927. }
  6928. }
  6929. },
  6930. "autoload": {
  6931. "psr-4": {
  6932. "Barryvdh\\Debugbar\\": "src/"
  6933. },
  6934. "files": [
  6935. "src/helpers.php"
  6936. ]
  6937. },
  6938. "notification-url": "https://packagist.org/downloads/",
  6939. "license": [
  6940. "MIT"
  6941. ],
  6942. "authors": [
  6943. {
  6944. "name": "Barry vd. Heuvel",
  6945. "email": "barryvdh@gmail.com"
  6946. }
  6947. ],
  6948. "description": "PHP Debugbar integration for Laravel",
  6949. "keywords": [
  6950. "debug",
  6951. "debugbar",
  6952. "laravel",
  6953. "profiler",
  6954. "webprofiler"
  6955. ],
  6956. "funding": [
  6957. {
  6958. "url": "https://github.com/barryvdh",
  6959. "type": "github"
  6960. }
  6961. ],
  6962. "time": "2020-09-07T19:32:39+00:00"
  6963. },
  6964. {
  6965. "name": "barryvdh/laravel-ide-helper",
  6966. "version": "v2.8.1",
  6967. "source": {
  6968. "type": "git",
  6969. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  6970. "reference": "affa55122f83575888d4ebf1728992686e8223de"
  6971. },
  6972. "dist": {
  6973. "type": "zip",
  6974. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/affa55122f83575888d4ebf1728992686e8223de",
  6975. "reference": "affa55122f83575888d4ebf1728992686e8223de",
  6976. "shasum": ""
  6977. },
  6978. "require": {
  6979. "barryvdh/reflection-docblock": "^2.0.6",
  6980. "composer/composer": "^1.6 || ^2.0@dev",
  6981. "doctrine/dbal": "~2.3",
  6982. "ext-json": "*",
  6983. "illuminate/console": "^6 || ^7 || ^8",
  6984. "illuminate/filesystem": "^6 || ^7 || ^8",
  6985. "illuminate/support": "^6 || ^7 || ^8",
  6986. "php": ">=7.2",
  6987. "phpdocumentor/type-resolver": "^1.1.0"
  6988. },
  6989. "require-dev": {
  6990. "friendsofphp/php-cs-fixer": "^2",
  6991. "illuminate/config": "^6 || ^7 || ^8",
  6992. "illuminate/view": "^6 || ^7 || ^8",
  6993. "mockery/mockery": "^1.3",
  6994. "orchestra/testbench": "^4 || ^5 || ^6",
  6995. "phpunit/phpunit": "^8.5 || ^9",
  6996. "spatie/phpunit-snapshot-assertions": "^1.4 || ^2.2 || ^3",
  6997. "vimeo/psalm": "^3.12"
  6998. },
  6999. "type": "library",
  7000. "extra": {
  7001. "branch-alias": {
  7002. "dev-master": "2.8-dev"
  7003. },
  7004. "laravel": {
  7005. "providers": [
  7006. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  7007. ]
  7008. }
  7009. },
  7010. "autoload": {
  7011. "psr-4": {
  7012. "Barryvdh\\LaravelIdeHelper\\": "src"
  7013. }
  7014. },
  7015. "notification-url": "https://packagist.org/downloads/",
  7016. "license": [
  7017. "MIT"
  7018. ],
  7019. "authors": [
  7020. {
  7021. "name": "Barry vd. Heuvel",
  7022. "email": "barryvdh@gmail.com"
  7023. }
  7024. ],
  7025. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  7026. "keywords": [
  7027. "autocomplete",
  7028. "codeintel",
  7029. "helper",
  7030. "ide",
  7031. "laravel",
  7032. "netbeans",
  7033. "phpdoc",
  7034. "phpstorm",
  7035. "sublime"
  7036. ],
  7037. "funding": [
  7038. {
  7039. "url": "https://github.com/barryvdh",
  7040. "type": "github"
  7041. }
  7042. ],
  7043. "time": "2020-09-07T07:36:37+00:00"
  7044. },
  7045. {
  7046. "name": "barryvdh/reflection-docblock",
  7047. "version": "v2.0.6",
  7048. "source": {
  7049. "type": "git",
  7050. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  7051. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  7052. },
  7053. "dist": {
  7054. "type": "zip",
  7055. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  7056. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  7057. "shasum": ""
  7058. },
  7059. "require": {
  7060. "php": ">=5.3.3"
  7061. },
  7062. "require-dev": {
  7063. "phpunit/phpunit": "~4.0,<4.5"
  7064. },
  7065. "suggest": {
  7066. "dflydev/markdown": "~1.0",
  7067. "erusev/parsedown": "~1.0"
  7068. },
  7069. "type": "library",
  7070. "extra": {
  7071. "branch-alias": {
  7072. "dev-master": "2.0.x-dev"
  7073. }
  7074. },
  7075. "autoload": {
  7076. "psr-0": {
  7077. "Barryvdh": [
  7078. "src/"
  7079. ]
  7080. }
  7081. },
  7082. "notification-url": "https://packagist.org/downloads/",
  7083. "license": [
  7084. "MIT"
  7085. ],
  7086. "authors": [
  7087. {
  7088. "name": "Mike van Riel",
  7089. "email": "mike.vanriel@naenius.com"
  7090. }
  7091. ],
  7092. "time": "2018-12-13T10:34:14+00:00"
  7093. },
  7094. {
  7095. "name": "caouecs/laravel-lang",
  7096. "version": "6.1.4",
  7097. "source": {
  7098. "type": "git",
  7099. "url": "https://github.com/caouecs/lang.git",
  7100. "reference": "18a7845e813e737a56a7f164301d5014b536950c"
  7101. },
  7102. "dist": {
  7103. "type": "zip",
  7104. "url": "https://api.github.com/repos/caouecs/lang/zipball/18a7845e813e737a56a7f164301d5014b536950c",
  7105. "reference": "18a7845e813e737a56a7f164301d5014b536950c",
  7106. "shasum": ""
  7107. },
  7108. "require": {
  7109. "ext-json": "*"
  7110. },
  7111. "suggest": {
  7112. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  7113. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  7114. "overtrue/laravel-lang": "Command to add languages in your project"
  7115. },
  7116. "type": "library",
  7117. "notification-url": "https://packagist.org/downloads/",
  7118. "license": [
  7119. "MIT"
  7120. ],
  7121. "authors": [
  7122. {
  7123. "name": "caouecs",
  7124. "email": "caouecs@caouecs.net"
  7125. }
  7126. ],
  7127. "description": "Languages for Laravel",
  7128. "keywords": [
  7129. "lang",
  7130. "languages",
  7131. "laravel",
  7132. "lpm"
  7133. ],
  7134. "abandoned": "https://github.com/Laravel-Lang/lang",
  7135. "time": "2020-07-13T14:35:32+00:00"
  7136. },
  7137. {
  7138. "name": "composer/composer",
  7139. "version": "1.10.13",
  7140. "source": {
  7141. "type": "git",
  7142. "url": "https://github.com/composer/composer.git",
  7143. "reference": "47c841ba3b2d3fc0b4b13282cf029ea18b66d78b"
  7144. },
  7145. "dist": {
  7146. "type": "zip",
  7147. "url": "https://api.github.com/repos/composer/composer/zipball/47c841ba3b2d3fc0b4b13282cf029ea18b66d78b",
  7148. "reference": "47c841ba3b2d3fc0b4b13282cf029ea18b66d78b",
  7149. "shasum": ""
  7150. },
  7151. "require": {
  7152. "composer/ca-bundle": "^1.0",
  7153. "composer/semver": "^1.0",
  7154. "composer/spdx-licenses": "^1.2",
  7155. "composer/xdebug-handler": "^1.1",
  7156. "justinrainbow/json-schema": "^5.2.10",
  7157. "php": "^5.3.2 || ^7.0",
  7158. "psr/log": "^1.0",
  7159. "seld/jsonlint": "^1.4",
  7160. "seld/phar-utils": "^1.0",
  7161. "symfony/console": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  7162. "symfony/filesystem": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  7163. "symfony/finder": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  7164. "symfony/process": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  7165. },
  7166. "conflict": {
  7167. "symfony/console": "2.8.38"
  7168. },
  7169. "require-dev": {
  7170. "phpspec/prophecy": "^1.10",
  7171. "symfony/phpunit-bridge": "^4.2"
  7172. },
  7173. "suggest": {
  7174. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  7175. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  7176. "ext-zlib": "Allow gzip compression of HTTP requests"
  7177. },
  7178. "bin": [
  7179. "bin/composer"
  7180. ],
  7181. "type": "library",
  7182. "extra": {
  7183. "branch-alias": {
  7184. "dev-master": "1.10-dev"
  7185. }
  7186. },
  7187. "autoload": {
  7188. "psr-4": {
  7189. "Composer\\": "src/Composer"
  7190. }
  7191. },
  7192. "notification-url": "https://packagist.org/downloads/",
  7193. "license": [
  7194. "MIT"
  7195. ],
  7196. "authors": [
  7197. {
  7198. "name": "Nils Adermann",
  7199. "email": "naderman@naderman.de",
  7200. "homepage": "http://www.naderman.de"
  7201. },
  7202. {
  7203. "name": "Jordi Boggiano",
  7204. "email": "j.boggiano@seld.be",
  7205. "homepage": "http://seld.be"
  7206. }
  7207. ],
  7208. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  7209. "homepage": "https://getcomposer.org/",
  7210. "keywords": [
  7211. "autoload",
  7212. "dependency",
  7213. "package"
  7214. ],
  7215. "support": {
  7216. "irc": "irc://irc.freenode.org/composer",
  7217. "issues": "https://github.com/composer/composer/issues",
  7218. "source": "https://github.com/composer/composer/tree/1.10.13"
  7219. },
  7220. "funding": [
  7221. {
  7222. "url": "https://packagist.com",
  7223. "type": "custom"
  7224. },
  7225. {
  7226. "url": "https://github.com/composer",
  7227. "type": "github"
  7228. },
  7229. {
  7230. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7231. "type": "tidelift"
  7232. }
  7233. ],
  7234. "time": "2020-09-09T09:46:34+00:00"
  7235. },
  7236. {
  7237. "name": "composer/semver",
  7238. "version": "1.7.1",
  7239. "source": {
  7240. "type": "git",
  7241. "url": "https://github.com/composer/semver.git",
  7242. "reference": "38276325bd896f90dfcfe30029aa5db40df387a7"
  7243. },
  7244. "dist": {
  7245. "type": "zip",
  7246. "url": "https://api.github.com/repos/composer/semver/zipball/38276325bd896f90dfcfe30029aa5db40df387a7",
  7247. "reference": "38276325bd896f90dfcfe30029aa5db40df387a7",
  7248. "shasum": ""
  7249. },
  7250. "require": {
  7251. "php": "^5.3.2 || ^7.0"
  7252. },
  7253. "require-dev": {
  7254. "phpunit/phpunit": "^4.5 || ^5.0.5"
  7255. },
  7256. "type": "library",
  7257. "extra": {
  7258. "branch-alias": {
  7259. "dev-master": "1.x-dev"
  7260. }
  7261. },
  7262. "autoload": {
  7263. "psr-4": {
  7264. "Composer\\Semver\\": "src"
  7265. }
  7266. },
  7267. "notification-url": "https://packagist.org/downloads/",
  7268. "license": [
  7269. "MIT"
  7270. ],
  7271. "authors": [
  7272. {
  7273. "name": "Nils Adermann",
  7274. "email": "naderman@naderman.de",
  7275. "homepage": "http://www.naderman.de"
  7276. },
  7277. {
  7278. "name": "Jordi Boggiano",
  7279. "email": "j.boggiano@seld.be",
  7280. "homepage": "http://seld.be"
  7281. },
  7282. {
  7283. "name": "Rob Bast",
  7284. "email": "rob.bast@gmail.com",
  7285. "homepage": "http://robbast.nl"
  7286. }
  7287. ],
  7288. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  7289. "keywords": [
  7290. "semantic",
  7291. "semver",
  7292. "validation",
  7293. "versioning"
  7294. ],
  7295. "funding": [
  7296. {
  7297. "url": "https://packagist.com",
  7298. "type": "custom"
  7299. },
  7300. {
  7301. "url": "https://github.com/composer",
  7302. "type": "github"
  7303. },
  7304. {
  7305. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7306. "type": "tidelift"
  7307. }
  7308. ],
  7309. "time": "2020-09-27T13:13:07+00:00"
  7310. },
  7311. {
  7312. "name": "composer/spdx-licenses",
  7313. "version": "1.5.4",
  7314. "source": {
  7315. "type": "git",
  7316. "url": "https://github.com/composer/spdx-licenses.git",
  7317. "reference": "6946f785871e2314c60b4524851f3702ea4f2223"
  7318. },
  7319. "dist": {
  7320. "type": "zip",
  7321. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/6946f785871e2314c60b4524851f3702ea4f2223",
  7322. "reference": "6946f785871e2314c60b4524851f3702ea4f2223",
  7323. "shasum": ""
  7324. },
  7325. "require": {
  7326. "php": "^5.3.2 || ^7.0 || ^8.0"
  7327. },
  7328. "require-dev": {
  7329. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
  7330. },
  7331. "type": "library",
  7332. "extra": {
  7333. "branch-alias": {
  7334. "dev-master": "1.x-dev"
  7335. }
  7336. },
  7337. "autoload": {
  7338. "psr-4": {
  7339. "Composer\\Spdx\\": "src"
  7340. }
  7341. },
  7342. "notification-url": "https://packagist.org/downloads/",
  7343. "license": [
  7344. "MIT"
  7345. ],
  7346. "authors": [
  7347. {
  7348. "name": "Nils Adermann",
  7349. "email": "naderman@naderman.de",
  7350. "homepage": "http://www.naderman.de"
  7351. },
  7352. {
  7353. "name": "Jordi Boggiano",
  7354. "email": "j.boggiano@seld.be",
  7355. "homepage": "http://seld.be"
  7356. },
  7357. {
  7358. "name": "Rob Bast",
  7359. "email": "rob.bast@gmail.com",
  7360. "homepage": "http://robbast.nl"
  7361. }
  7362. ],
  7363. "description": "SPDX licenses list and validation library.",
  7364. "keywords": [
  7365. "license",
  7366. "spdx",
  7367. "validator"
  7368. ],
  7369. "funding": [
  7370. {
  7371. "url": "https://packagist.com",
  7372. "type": "custom"
  7373. },
  7374. {
  7375. "url": "https://github.com/composer",
  7376. "type": "github"
  7377. },
  7378. {
  7379. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7380. "type": "tidelift"
  7381. }
  7382. ],
  7383. "time": "2020-07-15T15:35:07+00:00"
  7384. },
  7385. {
  7386. "name": "composer/xdebug-handler",
  7387. "version": "1.4.3",
  7388. "source": {
  7389. "type": "git",
  7390. "url": "https://github.com/composer/xdebug-handler.git",
  7391. "reference": "ebd27a9866ae8254e873866f795491f02418c5a5"
  7392. },
  7393. "dist": {
  7394. "type": "zip",
  7395. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ebd27a9866ae8254e873866f795491f02418c5a5",
  7396. "reference": "ebd27a9866ae8254e873866f795491f02418c5a5",
  7397. "shasum": ""
  7398. },
  7399. "require": {
  7400. "php": "^5.3.2 || ^7.0 || ^8.0",
  7401. "psr/log": "^1.0"
  7402. },
  7403. "require-dev": {
  7404. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
  7405. },
  7406. "type": "library",
  7407. "autoload": {
  7408. "psr-4": {
  7409. "Composer\\XdebugHandler\\": "src"
  7410. }
  7411. },
  7412. "notification-url": "https://packagist.org/downloads/",
  7413. "license": [
  7414. "MIT"
  7415. ],
  7416. "authors": [
  7417. {
  7418. "name": "John Stevenson",
  7419. "email": "john-stevenson@blueyonder.co.uk"
  7420. }
  7421. ],
  7422. "description": "Restarts a process without Xdebug.",
  7423. "keywords": [
  7424. "Xdebug",
  7425. "performance"
  7426. ],
  7427. "funding": [
  7428. {
  7429. "url": "https://packagist.com",
  7430. "type": "custom"
  7431. },
  7432. {
  7433. "url": "https://github.com/composer",
  7434. "type": "github"
  7435. },
  7436. {
  7437. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7438. "type": "tidelift"
  7439. }
  7440. ],
  7441. "time": "2020-08-19T10:27:58+00:00"
  7442. },
  7443. {
  7444. "name": "doctrine/cache",
  7445. "version": "1.10.2",
  7446. "source": {
  7447. "type": "git",
  7448. "url": "https://github.com/doctrine/cache.git",
  7449. "reference": "13e3381b25847283a91948d04640543941309727"
  7450. },
  7451. "dist": {
  7452. "type": "zip",
  7453. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  7454. "reference": "13e3381b25847283a91948d04640543941309727",
  7455. "shasum": ""
  7456. },
  7457. "require": {
  7458. "php": "~7.1 || ^8.0"
  7459. },
  7460. "conflict": {
  7461. "doctrine/common": ">2.2,<2.4"
  7462. },
  7463. "require-dev": {
  7464. "alcaeus/mongo-php-adapter": "^1.1",
  7465. "doctrine/coding-standard": "^6.0",
  7466. "mongodb/mongodb": "^1.1",
  7467. "phpunit/phpunit": "^7.0",
  7468. "predis/predis": "~1.0"
  7469. },
  7470. "suggest": {
  7471. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  7472. },
  7473. "type": "library",
  7474. "extra": {
  7475. "branch-alias": {
  7476. "dev-master": "1.9.x-dev"
  7477. }
  7478. },
  7479. "autoload": {
  7480. "psr-4": {
  7481. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  7482. }
  7483. },
  7484. "notification-url": "https://packagist.org/downloads/",
  7485. "license": [
  7486. "MIT"
  7487. ],
  7488. "authors": [
  7489. {
  7490. "name": "Guilherme Blanco",
  7491. "email": "guilhermeblanco@gmail.com"
  7492. },
  7493. {
  7494. "name": "Roman Borschel",
  7495. "email": "roman@code-factory.org"
  7496. },
  7497. {
  7498. "name": "Benjamin Eberlei",
  7499. "email": "kontakt@beberlei.de"
  7500. },
  7501. {
  7502. "name": "Jonathan Wage",
  7503. "email": "jonwage@gmail.com"
  7504. },
  7505. {
  7506. "name": "Johannes Schmitt",
  7507. "email": "schmittjoh@gmail.com"
  7508. }
  7509. ],
  7510. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  7511. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  7512. "keywords": [
  7513. "abstraction",
  7514. "apcu",
  7515. "cache",
  7516. "caching",
  7517. "couchdb",
  7518. "memcached",
  7519. "php",
  7520. "redis",
  7521. "xcache"
  7522. ],
  7523. "funding": [
  7524. {
  7525. "url": "https://www.doctrine-project.org/sponsorship.html",
  7526. "type": "custom"
  7527. },
  7528. {
  7529. "url": "https://www.patreon.com/phpdoctrine",
  7530. "type": "patreon"
  7531. },
  7532. {
  7533. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  7534. "type": "tidelift"
  7535. }
  7536. ],
  7537. "time": "2020-07-07T18:54:01+00:00"
  7538. },
  7539. {
  7540. "name": "doctrine/dbal",
  7541. "version": "2.11.1",
  7542. "source": {
  7543. "type": "git",
  7544. "url": "https://github.com/doctrine/dbal.git",
  7545. "reference": "6e6903cd5e3a5be60a79439e3ee8fe126f78fe86"
  7546. },
  7547. "dist": {
  7548. "type": "zip",
  7549. "url": "https://api.github.com/repos/doctrine/dbal/zipball/6e6903cd5e3a5be60a79439e3ee8fe126f78fe86",
  7550. "reference": "6e6903cd5e3a5be60a79439e3ee8fe126f78fe86",
  7551. "shasum": ""
  7552. },
  7553. "require": {
  7554. "doctrine/cache": "^1.0",
  7555. "doctrine/event-manager": "^1.0",
  7556. "ext-pdo": "*",
  7557. "php": "^7.3"
  7558. },
  7559. "require-dev": {
  7560. "doctrine/coding-standard": "^8.1",
  7561. "jetbrains/phpstorm-stubs": "^2019.1",
  7562. "nikic/php-parser": "^4.4",
  7563. "phpstan/phpstan": "^0.12.40",
  7564. "phpunit/phpunit": "^9.3",
  7565. "psalm/plugin-phpunit": "^0.10.0",
  7566. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  7567. "vimeo/psalm": "^3.14.2"
  7568. },
  7569. "suggest": {
  7570. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  7571. },
  7572. "bin": [
  7573. "bin/doctrine-dbal"
  7574. ],
  7575. "type": "library",
  7576. "extra": {
  7577. "branch-alias": {
  7578. "dev-master": "4.0.x-dev"
  7579. }
  7580. },
  7581. "autoload": {
  7582. "psr-4": {
  7583. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  7584. }
  7585. },
  7586. "notification-url": "https://packagist.org/downloads/",
  7587. "license": [
  7588. "MIT"
  7589. ],
  7590. "authors": [
  7591. {
  7592. "name": "Guilherme Blanco",
  7593. "email": "guilhermeblanco@gmail.com"
  7594. },
  7595. {
  7596. "name": "Roman Borschel",
  7597. "email": "roman@code-factory.org"
  7598. },
  7599. {
  7600. "name": "Benjamin Eberlei",
  7601. "email": "kontakt@beberlei.de"
  7602. },
  7603. {
  7604. "name": "Jonathan Wage",
  7605. "email": "jonwage@gmail.com"
  7606. }
  7607. ],
  7608. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  7609. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  7610. "keywords": [
  7611. "abstraction",
  7612. "database",
  7613. "db2",
  7614. "dbal",
  7615. "mariadb",
  7616. "mssql",
  7617. "mysql",
  7618. "oci8",
  7619. "oracle",
  7620. "pdo",
  7621. "pgsql",
  7622. "postgresql",
  7623. "queryobject",
  7624. "sasql",
  7625. "sql",
  7626. "sqlanywhere",
  7627. "sqlite",
  7628. "sqlserver",
  7629. "sqlsrv"
  7630. ],
  7631. "funding": [
  7632. {
  7633. "url": "https://www.doctrine-project.org/sponsorship.html",
  7634. "type": "custom"
  7635. },
  7636. {
  7637. "url": "https://www.patreon.com/phpdoctrine",
  7638. "type": "patreon"
  7639. },
  7640. {
  7641. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  7642. "type": "tidelift"
  7643. }
  7644. ],
  7645. "time": "2020-09-27T04:09:41+00:00"
  7646. },
  7647. {
  7648. "name": "doctrine/event-manager",
  7649. "version": "1.1.1",
  7650. "source": {
  7651. "type": "git",
  7652. "url": "https://github.com/doctrine/event-manager.git",
  7653. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  7654. },
  7655. "dist": {
  7656. "type": "zip",
  7657. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  7658. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  7659. "shasum": ""
  7660. },
  7661. "require": {
  7662. "php": "^7.1 || ^8.0"
  7663. },
  7664. "conflict": {
  7665. "doctrine/common": "<2.9@dev"
  7666. },
  7667. "require-dev": {
  7668. "doctrine/coding-standard": "^6.0",
  7669. "phpunit/phpunit": "^7.0"
  7670. },
  7671. "type": "library",
  7672. "extra": {
  7673. "branch-alias": {
  7674. "dev-master": "1.0.x-dev"
  7675. }
  7676. },
  7677. "autoload": {
  7678. "psr-4": {
  7679. "Doctrine\\Common\\": "lib/Doctrine/Common"
  7680. }
  7681. },
  7682. "notification-url": "https://packagist.org/downloads/",
  7683. "license": [
  7684. "MIT"
  7685. ],
  7686. "authors": [
  7687. {
  7688. "name": "Guilherme Blanco",
  7689. "email": "guilhermeblanco@gmail.com"
  7690. },
  7691. {
  7692. "name": "Roman Borschel",
  7693. "email": "roman@code-factory.org"
  7694. },
  7695. {
  7696. "name": "Benjamin Eberlei",
  7697. "email": "kontakt@beberlei.de"
  7698. },
  7699. {
  7700. "name": "Jonathan Wage",
  7701. "email": "jonwage@gmail.com"
  7702. },
  7703. {
  7704. "name": "Johannes Schmitt",
  7705. "email": "schmittjoh@gmail.com"
  7706. },
  7707. {
  7708. "name": "Marco Pivetta",
  7709. "email": "ocramius@gmail.com"
  7710. }
  7711. ],
  7712. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  7713. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  7714. "keywords": [
  7715. "event",
  7716. "event dispatcher",
  7717. "event manager",
  7718. "event system",
  7719. "events"
  7720. ],
  7721. "funding": [
  7722. {
  7723. "url": "https://www.doctrine-project.org/sponsorship.html",
  7724. "type": "custom"
  7725. },
  7726. {
  7727. "url": "https://www.patreon.com/phpdoctrine",
  7728. "type": "patreon"
  7729. },
  7730. {
  7731. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  7732. "type": "tidelift"
  7733. }
  7734. ],
  7735. "time": "2020-05-29T18:28:51+00:00"
  7736. },
  7737. {
  7738. "name": "doctrine/instantiator",
  7739. "version": "1.3.1",
  7740. "source": {
  7741. "type": "git",
  7742. "url": "https://github.com/doctrine/instantiator.git",
  7743. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea"
  7744. },
  7745. "dist": {
  7746. "type": "zip",
  7747. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/f350df0268e904597e3bd9c4685c53e0e333feea",
  7748. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea",
  7749. "shasum": ""
  7750. },
  7751. "require": {
  7752. "php": "^7.1 || ^8.0"
  7753. },
  7754. "require-dev": {
  7755. "doctrine/coding-standard": "^6.0",
  7756. "ext-pdo": "*",
  7757. "ext-phar": "*",
  7758. "phpbench/phpbench": "^0.13",
  7759. "phpstan/phpstan-phpunit": "^0.11",
  7760. "phpstan/phpstan-shim": "^0.11",
  7761. "phpunit/phpunit": "^7.0"
  7762. },
  7763. "type": "library",
  7764. "extra": {
  7765. "branch-alias": {
  7766. "dev-master": "1.2.x-dev"
  7767. }
  7768. },
  7769. "autoload": {
  7770. "psr-4": {
  7771. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  7772. }
  7773. },
  7774. "notification-url": "https://packagist.org/downloads/",
  7775. "license": [
  7776. "MIT"
  7777. ],
  7778. "authors": [
  7779. {
  7780. "name": "Marco Pivetta",
  7781. "email": "ocramius@gmail.com",
  7782. "homepage": "http://ocramius.github.com/"
  7783. }
  7784. ],
  7785. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  7786. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  7787. "keywords": [
  7788. "constructor",
  7789. "instantiate"
  7790. ],
  7791. "funding": [
  7792. {
  7793. "url": "https://www.doctrine-project.org/sponsorship.html",
  7794. "type": "custom"
  7795. },
  7796. {
  7797. "url": "https://www.patreon.com/phpdoctrine",
  7798. "type": "patreon"
  7799. },
  7800. {
  7801. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  7802. "type": "tidelift"
  7803. }
  7804. ],
  7805. "time": "2020-05-29T17:27:14+00:00"
  7806. },
  7807. {
  7808. "name": "facade/flare-client-php",
  7809. "version": "1.3.6",
  7810. "source": {
  7811. "type": "git",
  7812. "url": "https://github.com/facade/flare-client-php.git",
  7813. "reference": "451fadf38e9f635e7f8e1f5b3cf5c9eb82f11799"
  7814. },
  7815. "dist": {
  7816. "type": "zip",
  7817. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/451fadf38e9f635e7f8e1f5b3cf5c9eb82f11799",
  7818. "reference": "451fadf38e9f635e7f8e1f5b3cf5c9eb82f11799",
  7819. "shasum": ""
  7820. },
  7821. "require": {
  7822. "facade/ignition-contracts": "~1.0",
  7823. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  7824. "php": "^7.1",
  7825. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  7826. "symfony/mime": "^3.4|^4.0|^5.1",
  7827. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  7828. },
  7829. "require-dev": {
  7830. "friendsofphp/php-cs-fixer": "^2.14",
  7831. "phpunit/phpunit": "^7.5.16",
  7832. "spatie/phpunit-snapshot-assertions": "^2.0"
  7833. },
  7834. "type": "library",
  7835. "extra": {
  7836. "branch-alias": {
  7837. "dev-master": "1.0-dev"
  7838. }
  7839. },
  7840. "autoload": {
  7841. "psr-4": {
  7842. "Facade\\FlareClient\\": "src"
  7843. },
  7844. "files": [
  7845. "src/helpers.php"
  7846. ]
  7847. },
  7848. "notification-url": "https://packagist.org/downloads/",
  7849. "license": [
  7850. "MIT"
  7851. ],
  7852. "description": "Send PHP errors to Flare",
  7853. "homepage": "https://github.com/facade/flare-client-php",
  7854. "keywords": [
  7855. "exception",
  7856. "facade",
  7857. "flare",
  7858. "reporting"
  7859. ],
  7860. "funding": [
  7861. {
  7862. "url": "https://github.com/spatie",
  7863. "type": "github"
  7864. }
  7865. ],
  7866. "time": "2020-09-18T06:35:11+00:00"
  7867. },
  7868. {
  7869. "name": "facade/ignition",
  7870. "version": "2.3.7",
  7871. "source": {
  7872. "type": "git",
  7873. "url": "https://github.com/facade/ignition.git",
  7874. "reference": "b364db8860a63c1fb58b72b9718863c21df08762"
  7875. },
  7876. "dist": {
  7877. "type": "zip",
  7878. "url": "https://api.github.com/repos/facade/ignition/zipball/b364db8860a63c1fb58b72b9718863c21df08762",
  7879. "reference": "b364db8860a63c1fb58b72b9718863c21df08762",
  7880. "shasum": ""
  7881. },
  7882. "require": {
  7883. "ext-json": "*",
  7884. "ext-mbstring": "*",
  7885. "facade/flare-client-php": "^1.0",
  7886. "facade/ignition-contracts": "^1.0",
  7887. "filp/whoops": "^2.4",
  7888. "illuminate/support": "^7.0|^8.0",
  7889. "monolog/monolog": "^2.0",
  7890. "php": "^7.2.5",
  7891. "scrivo/highlight.php": "^9.15",
  7892. "symfony/console": "^5.0",
  7893. "symfony/var-dumper": "^5.0"
  7894. },
  7895. "require-dev": {
  7896. "friendsofphp/php-cs-fixer": "^2.14",
  7897. "mockery/mockery": "^1.3",
  7898. "orchestra/testbench": "^5.0|^6.0",
  7899. "psalm/plugin-laravel": "^1.2"
  7900. },
  7901. "suggest": {
  7902. "laravel/telescope": "^3.1"
  7903. },
  7904. "type": "library",
  7905. "extra": {
  7906. "branch-alias": {
  7907. "dev-master": "2.x-dev"
  7908. },
  7909. "laravel": {
  7910. "providers": [
  7911. "Facade\\Ignition\\IgnitionServiceProvider"
  7912. ],
  7913. "aliases": {
  7914. "Flare": "Facade\\Ignition\\Facades\\Flare"
  7915. }
  7916. }
  7917. },
  7918. "autoload": {
  7919. "psr-4": {
  7920. "Facade\\Ignition\\": "src"
  7921. },
  7922. "files": [
  7923. "src/helpers.php"
  7924. ]
  7925. },
  7926. "notification-url": "https://packagist.org/downloads/",
  7927. "license": [
  7928. "MIT"
  7929. ],
  7930. "description": "A beautiful error page for Laravel applications.",
  7931. "homepage": "https://github.com/facade/ignition",
  7932. "keywords": [
  7933. "error",
  7934. "flare",
  7935. "laravel",
  7936. "page"
  7937. ],
  7938. "support": {
  7939. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  7940. "forum": "https://twitter.com/flareappio",
  7941. "issues": "https://github.com/facade/ignition/issues",
  7942. "source": "https://github.com/facade/ignition"
  7943. },
  7944. "time": "2020-09-06T19:26:27+00:00"
  7945. },
  7946. {
  7947. "name": "facade/ignition-contracts",
  7948. "version": "1.0.1",
  7949. "source": {
  7950. "type": "git",
  7951. "url": "https://github.com/facade/ignition-contracts.git",
  7952. "reference": "aeab1ce8b68b188a43e81758e750151ad7da796b"
  7953. },
  7954. "dist": {
  7955. "type": "zip",
  7956. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/aeab1ce8b68b188a43e81758e750151ad7da796b",
  7957. "reference": "aeab1ce8b68b188a43e81758e750151ad7da796b",
  7958. "shasum": ""
  7959. },
  7960. "require": {
  7961. "php": "^7.1"
  7962. },
  7963. "require-dev": {
  7964. "friendsofphp/php-cs-fixer": "^2.14",
  7965. "phpunit/phpunit": "^7.5|^8.0",
  7966. "vimeo/psalm": "^3.12"
  7967. },
  7968. "type": "library",
  7969. "autoload": {
  7970. "psr-4": {
  7971. "Facade\\IgnitionContracts\\": "src"
  7972. }
  7973. },
  7974. "notification-url": "https://packagist.org/downloads/",
  7975. "license": [
  7976. "MIT"
  7977. ],
  7978. "authors": [
  7979. {
  7980. "name": "Freek Van der Herten",
  7981. "email": "freek@spatie.be",
  7982. "homepage": "https://flareapp.io",
  7983. "role": "Developer"
  7984. }
  7985. ],
  7986. "description": "Solution contracts for Ignition",
  7987. "homepage": "https://github.com/facade/ignition-contracts",
  7988. "keywords": [
  7989. "contracts",
  7990. "flare",
  7991. "ignition"
  7992. ],
  7993. "time": "2020-07-14T10:10:28+00:00"
  7994. },
  7995. {
  7996. "name": "filp/whoops",
  7997. "version": "2.7.3",
  7998. "source": {
  7999. "type": "git",
  8000. "url": "https://github.com/filp/whoops.git",
  8001. "reference": "5d5fe9bb3d656b514d455645b3addc5f7ba7714d"
  8002. },
  8003. "dist": {
  8004. "type": "zip",
  8005. "url": "https://api.github.com/repos/filp/whoops/zipball/5d5fe9bb3d656b514d455645b3addc5f7ba7714d",
  8006. "reference": "5d5fe9bb3d656b514d455645b3addc5f7ba7714d",
  8007. "shasum": ""
  8008. },
  8009. "require": {
  8010. "php": "^5.5.9 || ^7.0",
  8011. "psr/log": "^1.0.1"
  8012. },
  8013. "require-dev": {
  8014. "mockery/mockery": "^0.9 || ^1.0",
  8015. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0",
  8016. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8017. },
  8018. "suggest": {
  8019. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8020. "whoops/soap": "Formats errors as SOAP responses"
  8021. },
  8022. "type": "library",
  8023. "extra": {
  8024. "branch-alias": {
  8025. "dev-master": "2.6-dev"
  8026. }
  8027. },
  8028. "autoload": {
  8029. "psr-4": {
  8030. "Whoops\\": "src/Whoops/"
  8031. }
  8032. },
  8033. "notification-url": "https://packagist.org/downloads/",
  8034. "license": [
  8035. "MIT"
  8036. ],
  8037. "authors": [
  8038. {
  8039. "name": "Filipe Dobreira",
  8040. "homepage": "https://github.com/filp",
  8041. "role": "Developer"
  8042. }
  8043. ],
  8044. "description": "php error handling for cool kids",
  8045. "homepage": "https://filp.github.io/whoops/",
  8046. "keywords": [
  8047. "error",
  8048. "exception",
  8049. "handling",
  8050. "library",
  8051. "throwable",
  8052. "whoops"
  8053. ],
  8054. "time": "2020-06-14T09:00:00+00:00"
  8055. },
  8056. {
  8057. "name": "fzaninotto/faker",
  8058. "version": "v1.9.1",
  8059. "source": {
  8060. "type": "git",
  8061. "url": "https://github.com/fzaninotto/Faker.git",
  8062. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f"
  8063. },
  8064. "dist": {
  8065. "type": "zip",
  8066. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f",
  8067. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f",
  8068. "shasum": ""
  8069. },
  8070. "require": {
  8071. "php": "^5.3.3 || ^7.0"
  8072. },
  8073. "require-dev": {
  8074. "ext-intl": "*",
  8075. "phpunit/phpunit": "^4.8.35 || ^5.7",
  8076. "squizlabs/php_codesniffer": "^2.9.2"
  8077. },
  8078. "type": "library",
  8079. "extra": {
  8080. "branch-alias": {
  8081. "dev-master": "1.9-dev"
  8082. }
  8083. },
  8084. "autoload": {
  8085. "psr-4": {
  8086. "Faker\\": "src/Faker/"
  8087. }
  8088. },
  8089. "notification-url": "https://packagist.org/downloads/",
  8090. "license": [
  8091. "MIT"
  8092. ],
  8093. "authors": [
  8094. {
  8095. "name": "François Zaninotto"
  8096. }
  8097. ],
  8098. "description": "Faker is a PHP library that generates fake data for you.",
  8099. "keywords": [
  8100. "data",
  8101. "faker",
  8102. "fixtures"
  8103. ],
  8104. "time": "2019-12-12T13:22:17+00:00"
  8105. },
  8106. {
  8107. "name": "hamcrest/hamcrest-php",
  8108. "version": "v2.0.1",
  8109. "source": {
  8110. "type": "git",
  8111. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8112. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8113. },
  8114. "dist": {
  8115. "type": "zip",
  8116. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8117. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8118. "shasum": ""
  8119. },
  8120. "require": {
  8121. "php": "^5.3|^7.0|^8.0"
  8122. },
  8123. "replace": {
  8124. "cordoval/hamcrest-php": "*",
  8125. "davedevelopment/hamcrest-php": "*",
  8126. "kodova/hamcrest-php": "*"
  8127. },
  8128. "require-dev": {
  8129. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8130. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8131. },
  8132. "type": "library",
  8133. "extra": {
  8134. "branch-alias": {
  8135. "dev-master": "2.1-dev"
  8136. }
  8137. },
  8138. "autoload": {
  8139. "classmap": [
  8140. "hamcrest"
  8141. ]
  8142. },
  8143. "notification-url": "https://packagist.org/downloads/",
  8144. "license": [
  8145. "BSD-3-Clause"
  8146. ],
  8147. "description": "This is the PHP port of Hamcrest Matchers",
  8148. "keywords": [
  8149. "test"
  8150. ],
  8151. "time": "2020-07-09T08:09:16+00:00"
  8152. },
  8153. {
  8154. "name": "justinrainbow/json-schema",
  8155. "version": "5.2.10",
  8156. "source": {
  8157. "type": "git",
  8158. "url": "https://github.com/justinrainbow/json-schema.git",
  8159. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b"
  8160. },
  8161. "dist": {
  8162. "type": "zip",
  8163. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  8164. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  8165. "shasum": ""
  8166. },
  8167. "require": {
  8168. "php": ">=5.3.3"
  8169. },
  8170. "require-dev": {
  8171. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  8172. "json-schema/json-schema-test-suite": "1.2.0",
  8173. "phpunit/phpunit": "^4.8.35"
  8174. },
  8175. "bin": [
  8176. "bin/validate-json"
  8177. ],
  8178. "type": "library",
  8179. "extra": {
  8180. "branch-alias": {
  8181. "dev-master": "5.0.x-dev"
  8182. }
  8183. },
  8184. "autoload": {
  8185. "psr-4": {
  8186. "JsonSchema\\": "src/JsonSchema/"
  8187. }
  8188. },
  8189. "notification-url": "https://packagist.org/downloads/",
  8190. "license": [
  8191. "MIT"
  8192. ],
  8193. "authors": [
  8194. {
  8195. "name": "Bruno Prieto Reis",
  8196. "email": "bruno.p.reis@gmail.com"
  8197. },
  8198. {
  8199. "name": "Justin Rainbow",
  8200. "email": "justin.rainbow@gmail.com"
  8201. },
  8202. {
  8203. "name": "Igor Wiedler",
  8204. "email": "igor@wiedler.ch"
  8205. },
  8206. {
  8207. "name": "Robert Schönthal",
  8208. "email": "seroscho@googlemail.com"
  8209. }
  8210. ],
  8211. "description": "A library to validate a json schema.",
  8212. "homepage": "https://github.com/justinrainbow/json-schema",
  8213. "keywords": [
  8214. "json",
  8215. "schema"
  8216. ],
  8217. "time": "2020-05-27T16:41:55+00:00"
  8218. },
  8219. {
  8220. "name": "laravel/telescope",
  8221. "version": "v3.5.1",
  8222. "source": {
  8223. "type": "git",
  8224. "url": "https://github.com/laravel/telescope.git",
  8225. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5"
  8226. },
  8227. "dist": {
  8228. "type": "zip",
  8229. "url": "https://api.github.com/repos/laravel/telescope/zipball/a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  8230. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  8231. "shasum": ""
  8232. },
  8233. "require": {
  8234. "ext-json": "*",
  8235. "laravel/framework": "^6.0|^7.0",
  8236. "moontoast/math": "^1.1",
  8237. "php": "^7.2",
  8238. "symfony/var-dumper": "^4.4|^5.0"
  8239. },
  8240. "require-dev": {
  8241. "ext-gd": "*",
  8242. "orchestra/testbench": "^4.0|^5.0"
  8243. },
  8244. "type": "library",
  8245. "extra": {
  8246. "branch-alias": {
  8247. "dev-master": "3.x-dev"
  8248. },
  8249. "laravel": {
  8250. "providers": [
  8251. "Laravel\\Telescope\\TelescopeServiceProvider"
  8252. ]
  8253. }
  8254. },
  8255. "autoload": {
  8256. "psr-4": {
  8257. "Laravel\\Telescope\\": "src/"
  8258. }
  8259. },
  8260. "notification-url": "https://packagist.org/downloads/",
  8261. "license": [
  8262. "MIT"
  8263. ],
  8264. "authors": [
  8265. {
  8266. "name": "Taylor Otwell",
  8267. "email": "taylor@laravel.com"
  8268. },
  8269. {
  8270. "name": "Mohamed Said",
  8271. "email": "mohamed@laravel.com"
  8272. }
  8273. ],
  8274. "description": "An elegant debug assistant for the Laravel framework.",
  8275. "keywords": [
  8276. "debugging",
  8277. "laravel",
  8278. "monitoring"
  8279. ],
  8280. "time": "2020-07-28T19:12:33+00:00"
  8281. },
  8282. {
  8283. "name": "maximebf/debugbar",
  8284. "version": "v1.16.3",
  8285. "source": {
  8286. "type": "git",
  8287. "url": "https://github.com/maximebf/php-debugbar.git",
  8288. "reference": "1a1605b8e9bacb34cc0c6278206d699772e1d372"
  8289. },
  8290. "dist": {
  8291. "type": "zip",
  8292. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/1a1605b8e9bacb34cc0c6278206d699772e1d372",
  8293. "reference": "1a1605b8e9bacb34cc0c6278206d699772e1d372",
  8294. "shasum": ""
  8295. },
  8296. "require": {
  8297. "php": "^7.1",
  8298. "psr/log": "^1.0",
  8299. "symfony/var-dumper": "^2.6|^3|^4|^5"
  8300. },
  8301. "require-dev": {
  8302. "phpunit/phpunit": "^5"
  8303. },
  8304. "suggest": {
  8305. "kriswallsmith/assetic": "The best way to manage assets",
  8306. "monolog/monolog": "Log using Monolog",
  8307. "predis/predis": "Redis storage"
  8308. },
  8309. "type": "library",
  8310. "extra": {
  8311. "branch-alias": {
  8312. "dev-master": "1.16-dev"
  8313. }
  8314. },
  8315. "autoload": {
  8316. "psr-4": {
  8317. "DebugBar\\": "src/DebugBar/"
  8318. }
  8319. },
  8320. "notification-url": "https://packagist.org/downloads/",
  8321. "license": [
  8322. "MIT"
  8323. ],
  8324. "authors": [
  8325. {
  8326. "name": "Maxime Bouroumeau-Fuseau",
  8327. "email": "maxime.bouroumeau@gmail.com",
  8328. "homepage": "http://maximebf.com"
  8329. },
  8330. {
  8331. "name": "Barry vd. Heuvel",
  8332. "email": "barryvdh@gmail.com"
  8333. }
  8334. ],
  8335. "description": "Debug bar in the browser for php application",
  8336. "homepage": "https://github.com/maximebf/php-debugbar",
  8337. "keywords": [
  8338. "debug",
  8339. "debugbar"
  8340. ],
  8341. "time": "2020-05-06T07:06:27+00:00"
  8342. },
  8343. {
  8344. "name": "mockery/mockery",
  8345. "version": "1.4.2",
  8346. "source": {
  8347. "type": "git",
  8348. "url": "https://github.com/mockery/mockery.git",
  8349. "reference": "20cab678faed06fac225193be281ea0fddb43b93"
  8350. },
  8351. "dist": {
  8352. "type": "zip",
  8353. "url": "https://api.github.com/repos/mockery/mockery/zipball/20cab678faed06fac225193be281ea0fddb43b93",
  8354. "reference": "20cab678faed06fac225193be281ea0fddb43b93",
  8355. "shasum": ""
  8356. },
  8357. "require": {
  8358. "hamcrest/hamcrest-php": "^2.0.1",
  8359. "lib-pcre": ">=7.0",
  8360. "php": "^7.3 || ^8.0"
  8361. },
  8362. "conflict": {
  8363. "phpunit/phpunit": "<8.0"
  8364. },
  8365. "require-dev": {
  8366. "phpunit/phpunit": "^8.5 || ^9.3"
  8367. },
  8368. "type": "library",
  8369. "extra": {
  8370. "branch-alias": {
  8371. "dev-master": "1.4.x-dev"
  8372. }
  8373. },
  8374. "autoload": {
  8375. "psr-0": {
  8376. "Mockery": "library/"
  8377. }
  8378. },
  8379. "notification-url": "https://packagist.org/downloads/",
  8380. "license": [
  8381. "BSD-3-Clause"
  8382. ],
  8383. "authors": [
  8384. {
  8385. "name": "Pádraic Brady",
  8386. "email": "padraic.brady@gmail.com",
  8387. "homepage": "http://blog.astrumfutura.com"
  8388. },
  8389. {
  8390. "name": "Dave Marshall",
  8391. "email": "dave.marshall@atstsolutions.co.uk",
  8392. "homepage": "http://davedevelopment.co.uk"
  8393. }
  8394. ],
  8395. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8396. "homepage": "https://github.com/mockery/mockery",
  8397. "keywords": [
  8398. "BDD",
  8399. "TDD",
  8400. "library",
  8401. "mock",
  8402. "mock objects",
  8403. "mockery",
  8404. "stub",
  8405. "test",
  8406. "test double",
  8407. "testing"
  8408. ],
  8409. "time": "2020-08-11T18:10:13+00:00"
  8410. },
  8411. {
  8412. "name": "moontoast/math",
  8413. "version": "1.2.1",
  8414. "source": {
  8415. "type": "git",
  8416. "url": "https://github.com/ramsey/moontoast-math.git",
  8417. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa"
  8418. },
  8419. "dist": {
  8420. "type": "zip",
  8421. "url": "https://api.github.com/repos/ramsey/moontoast-math/zipball/5f47d34c87767dbcc08b30377a9827df71de91fa",
  8422. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa",
  8423. "shasum": ""
  8424. },
  8425. "require": {
  8426. "php": ">=5.3.3",
  8427. "phpseclib/bcmath_compat": ">=1.0.3"
  8428. },
  8429. "require-dev": {
  8430. "jakub-onderka/php-parallel-lint": "^0.9.0",
  8431. "phpunit/phpunit": "^4.8 || ^5.5 || ^6.5 || ^7.0",
  8432. "satooshi/php-coveralls": "^0.6.1",
  8433. "squizlabs/php_codesniffer": "^2.3"
  8434. },
  8435. "type": "library",
  8436. "autoload": {
  8437. "psr-4": {
  8438. "Moontoast\\Math\\": "src/Moontoast/Math",
  8439. "Moontoast\\Math\\Exception\\": "src/Moontoast/Math/Exception"
  8440. }
  8441. },
  8442. "notification-url": "https://packagist.org/downloads/",
  8443. "license": [
  8444. "Apache-2.0"
  8445. ],
  8446. "authors": [
  8447. {
  8448. "name": "Ben Ramsey",
  8449. "email": "ben@benramsey.com",
  8450. "homepage": "https://benramsey.com"
  8451. }
  8452. ],
  8453. "description": "A mathematics library, providing functionality for large numbers",
  8454. "homepage": "https://github.com/ramsey/moontoast-math",
  8455. "keywords": [
  8456. "bcmath",
  8457. "math"
  8458. ],
  8459. "abandoned": "brick/math",
  8460. "time": "2020-01-05T04:49:34+00:00"
  8461. },
  8462. {
  8463. "name": "myclabs/deep-copy",
  8464. "version": "1.10.1",
  8465. "source": {
  8466. "type": "git",
  8467. "url": "https://github.com/myclabs/DeepCopy.git",
  8468. "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5"
  8469. },
  8470. "dist": {
  8471. "type": "zip",
  8472. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
  8473. "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
  8474. "shasum": ""
  8475. },
  8476. "require": {
  8477. "php": "^7.1 || ^8.0"
  8478. },
  8479. "replace": {
  8480. "myclabs/deep-copy": "self.version"
  8481. },
  8482. "require-dev": {
  8483. "doctrine/collections": "^1.0",
  8484. "doctrine/common": "^2.6",
  8485. "phpunit/phpunit": "^7.1"
  8486. },
  8487. "type": "library",
  8488. "autoload": {
  8489. "psr-4": {
  8490. "DeepCopy\\": "src/DeepCopy/"
  8491. },
  8492. "files": [
  8493. "src/DeepCopy/deep_copy.php"
  8494. ]
  8495. },
  8496. "notification-url": "https://packagist.org/downloads/",
  8497. "license": [
  8498. "MIT"
  8499. ],
  8500. "description": "Create deep copies (clones) of your objects",
  8501. "keywords": [
  8502. "clone",
  8503. "copy",
  8504. "duplicate",
  8505. "object",
  8506. "object graph"
  8507. ],
  8508. "funding": [
  8509. {
  8510. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8511. "type": "tidelift"
  8512. }
  8513. ],
  8514. "time": "2020-06-29T13:22:24+00:00"
  8515. },
  8516. {
  8517. "name": "nunomaduro/collision",
  8518. "version": "v4.2.0",
  8519. "source": {
  8520. "type": "git",
  8521. "url": "https://github.com/nunomaduro/collision.git",
  8522. "reference": "d50490417eded97be300a92cd7df7badc37a9018"
  8523. },
  8524. "dist": {
  8525. "type": "zip",
  8526. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/d50490417eded97be300a92cd7df7badc37a9018",
  8527. "reference": "d50490417eded97be300a92cd7df7badc37a9018",
  8528. "shasum": ""
  8529. },
  8530. "require": {
  8531. "facade/ignition-contracts": "^1.0",
  8532. "filp/whoops": "^2.4",
  8533. "php": "^7.2.5",
  8534. "symfony/console": "^5.0"
  8535. },
  8536. "require-dev": {
  8537. "facade/ignition": "^2.0",
  8538. "fideloper/proxy": "^4.2",
  8539. "friendsofphp/php-cs-fixer": "^2.16",
  8540. "fruitcake/laravel-cors": "^1.0",
  8541. "laravel/framework": "^7.0",
  8542. "laravel/tinker": "^2.0",
  8543. "nunomaduro/larastan": "^0.5",
  8544. "orchestra/testbench": "^5.0",
  8545. "phpstan/phpstan": "^0.12.3",
  8546. "phpunit/phpunit": "^8.5.1 || ^9.0"
  8547. },
  8548. "type": "library",
  8549. "extra": {
  8550. "laravel": {
  8551. "providers": [
  8552. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8553. ]
  8554. }
  8555. },
  8556. "autoload": {
  8557. "psr-4": {
  8558. "NunoMaduro\\Collision\\": "src/"
  8559. }
  8560. },
  8561. "notification-url": "https://packagist.org/downloads/",
  8562. "license": [
  8563. "MIT"
  8564. ],
  8565. "authors": [
  8566. {
  8567. "name": "Nuno Maduro",
  8568. "email": "enunomaduro@gmail.com"
  8569. }
  8570. ],
  8571. "description": "Cli error handling for console/command-line PHP applications.",
  8572. "keywords": [
  8573. "artisan",
  8574. "cli",
  8575. "command-line",
  8576. "console",
  8577. "error",
  8578. "handling",
  8579. "laravel",
  8580. "laravel-zero",
  8581. "php",
  8582. "symfony"
  8583. ],
  8584. "funding": [
  8585. {
  8586. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  8587. "type": "custom"
  8588. },
  8589. {
  8590. "url": "https://github.com/nunomaduro",
  8591. "type": "github"
  8592. },
  8593. {
  8594. "url": "https://www.patreon.com/nunomaduro",
  8595. "type": "patreon"
  8596. }
  8597. ],
  8598. "time": "2020-04-04T19:56:08+00:00"
  8599. },
  8600. {
  8601. "name": "phar-io/manifest",
  8602. "version": "1.0.3",
  8603. "source": {
  8604. "type": "git",
  8605. "url": "https://github.com/phar-io/manifest.git",
  8606. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  8607. },
  8608. "dist": {
  8609. "type": "zip",
  8610. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  8611. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  8612. "shasum": ""
  8613. },
  8614. "require": {
  8615. "ext-dom": "*",
  8616. "ext-phar": "*",
  8617. "phar-io/version": "^2.0",
  8618. "php": "^5.6 || ^7.0"
  8619. },
  8620. "type": "library",
  8621. "extra": {
  8622. "branch-alias": {
  8623. "dev-master": "1.0.x-dev"
  8624. }
  8625. },
  8626. "autoload": {
  8627. "classmap": [
  8628. "src/"
  8629. ]
  8630. },
  8631. "notification-url": "https://packagist.org/downloads/",
  8632. "license": [
  8633. "BSD-3-Clause"
  8634. ],
  8635. "authors": [
  8636. {
  8637. "name": "Arne Blankerts",
  8638. "email": "arne@blankerts.de",
  8639. "role": "Developer"
  8640. },
  8641. {
  8642. "name": "Sebastian Heuer",
  8643. "email": "sebastian@phpeople.de",
  8644. "role": "Developer"
  8645. },
  8646. {
  8647. "name": "Sebastian Bergmann",
  8648. "email": "sebastian@phpunit.de",
  8649. "role": "Developer"
  8650. }
  8651. ],
  8652. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8653. "time": "2018-07-08T19:23:20+00:00"
  8654. },
  8655. {
  8656. "name": "phar-io/version",
  8657. "version": "2.0.1",
  8658. "source": {
  8659. "type": "git",
  8660. "url": "https://github.com/phar-io/version.git",
  8661. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  8662. },
  8663. "dist": {
  8664. "type": "zip",
  8665. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  8666. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  8667. "shasum": ""
  8668. },
  8669. "require": {
  8670. "php": "^5.6 || ^7.0"
  8671. },
  8672. "type": "library",
  8673. "autoload": {
  8674. "classmap": [
  8675. "src/"
  8676. ]
  8677. },
  8678. "notification-url": "https://packagist.org/downloads/",
  8679. "license": [
  8680. "BSD-3-Clause"
  8681. ],
  8682. "authors": [
  8683. {
  8684. "name": "Arne Blankerts",
  8685. "email": "arne@blankerts.de",
  8686. "role": "Developer"
  8687. },
  8688. {
  8689. "name": "Sebastian Heuer",
  8690. "email": "sebastian@phpeople.de",
  8691. "role": "Developer"
  8692. },
  8693. {
  8694. "name": "Sebastian Bergmann",
  8695. "email": "sebastian@phpunit.de",
  8696. "role": "Developer"
  8697. }
  8698. ],
  8699. "description": "Library for handling version information and constraints",
  8700. "time": "2018-07-08T19:19:57+00:00"
  8701. },
  8702. {
  8703. "name": "phpdocumentor/reflection-common",
  8704. "version": "2.2.0",
  8705. "source": {
  8706. "type": "git",
  8707. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  8708. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  8709. },
  8710. "dist": {
  8711. "type": "zip",
  8712. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8713. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8714. "shasum": ""
  8715. },
  8716. "require": {
  8717. "php": "^7.2 || ^8.0"
  8718. },
  8719. "type": "library",
  8720. "extra": {
  8721. "branch-alias": {
  8722. "dev-2.x": "2.x-dev"
  8723. }
  8724. },
  8725. "autoload": {
  8726. "psr-4": {
  8727. "phpDocumentor\\Reflection\\": "src/"
  8728. }
  8729. },
  8730. "notification-url": "https://packagist.org/downloads/",
  8731. "license": [
  8732. "MIT"
  8733. ],
  8734. "authors": [
  8735. {
  8736. "name": "Jaap van Otterdijk",
  8737. "email": "opensource@ijaap.nl"
  8738. }
  8739. ],
  8740. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  8741. "homepage": "http://www.phpdoc.org",
  8742. "keywords": [
  8743. "FQSEN",
  8744. "phpDocumentor",
  8745. "phpdoc",
  8746. "reflection",
  8747. "static analysis"
  8748. ],
  8749. "time": "2020-06-27T09:03:43+00:00"
  8750. },
  8751. {
  8752. "name": "phpdocumentor/reflection-docblock",
  8753. "version": "5.2.2",
  8754. "source": {
  8755. "type": "git",
  8756. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  8757. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  8758. },
  8759. "dist": {
  8760. "type": "zip",
  8761. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  8762. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  8763. "shasum": ""
  8764. },
  8765. "require": {
  8766. "ext-filter": "*",
  8767. "php": "^7.2 || ^8.0",
  8768. "phpdocumentor/reflection-common": "^2.2",
  8769. "phpdocumentor/type-resolver": "^1.3",
  8770. "webmozart/assert": "^1.9.1"
  8771. },
  8772. "require-dev": {
  8773. "mockery/mockery": "~1.3.2"
  8774. },
  8775. "type": "library",
  8776. "extra": {
  8777. "branch-alias": {
  8778. "dev-master": "5.x-dev"
  8779. }
  8780. },
  8781. "autoload": {
  8782. "psr-4": {
  8783. "phpDocumentor\\Reflection\\": "src"
  8784. }
  8785. },
  8786. "notification-url": "https://packagist.org/downloads/",
  8787. "license": [
  8788. "MIT"
  8789. ],
  8790. "authors": [
  8791. {
  8792. "name": "Mike van Riel",
  8793. "email": "me@mikevanriel.com"
  8794. },
  8795. {
  8796. "name": "Jaap van Otterdijk",
  8797. "email": "account@ijaap.nl"
  8798. }
  8799. ],
  8800. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  8801. "time": "2020-09-03T19:13:55+00:00"
  8802. },
  8803. {
  8804. "name": "phpdocumentor/type-resolver",
  8805. "version": "1.4.0",
  8806. "source": {
  8807. "type": "git",
  8808. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  8809. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  8810. },
  8811. "dist": {
  8812. "type": "zip",
  8813. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  8814. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  8815. "shasum": ""
  8816. },
  8817. "require": {
  8818. "php": "^7.2 || ^8.0",
  8819. "phpdocumentor/reflection-common": "^2.0"
  8820. },
  8821. "require-dev": {
  8822. "ext-tokenizer": "*"
  8823. },
  8824. "type": "library",
  8825. "extra": {
  8826. "branch-alias": {
  8827. "dev-1.x": "1.x-dev"
  8828. }
  8829. },
  8830. "autoload": {
  8831. "psr-4": {
  8832. "phpDocumentor\\Reflection\\": "src"
  8833. }
  8834. },
  8835. "notification-url": "https://packagist.org/downloads/",
  8836. "license": [
  8837. "MIT"
  8838. ],
  8839. "authors": [
  8840. {
  8841. "name": "Mike van Riel",
  8842. "email": "me@mikevanriel.com"
  8843. }
  8844. ],
  8845. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  8846. "time": "2020-09-17T18:55:26+00:00"
  8847. },
  8848. {
  8849. "name": "phpseclib/bcmath_compat",
  8850. "version": "1.0.5",
  8851. "source": {
  8852. "type": "git",
  8853. "url": "https://github.com/phpseclib/bcmath_compat.git",
  8854. "reference": "89cbb63742a32730b7187773a60b6b12b9db4479"
  8855. },
  8856. "dist": {
  8857. "type": "zip",
  8858. "url": "https://api.github.com/repos/phpseclib/bcmath_compat/zipball/89cbb63742a32730b7187773a60b6b12b9db4479",
  8859. "reference": "89cbb63742a32730b7187773a60b6b12b9db4479",
  8860. "shasum": ""
  8861. },
  8862. "require": {
  8863. "phpseclib/phpseclib": ">=2.0.19"
  8864. },
  8865. "provide": {
  8866. "ext-bcmath": "7.3.5"
  8867. },
  8868. "require-dev": {
  8869. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  8870. "squizlabs/php_codesniffer": "^3.0"
  8871. },
  8872. "suggest": {
  8873. "ext-gmp": "Will enable faster math operations"
  8874. },
  8875. "type": "library",
  8876. "autoload": {
  8877. "files": [
  8878. "lib/bcmath.php"
  8879. ],
  8880. "psr-4": {
  8881. "bcmath_compat\\": "src"
  8882. }
  8883. },
  8884. "notification-url": "https://packagist.org/downloads/",
  8885. "license": [
  8886. "MIT"
  8887. ],
  8888. "authors": [
  8889. {
  8890. "name": "Jim Wigginton",
  8891. "email": "terrafrost@php.net",
  8892. "homepage": "http://phpseclib.sourceforge.net"
  8893. }
  8894. ],
  8895. "description": "PHP 5.x/7.x polyfill for bcmath extension",
  8896. "keywords": [
  8897. "BigInteger",
  8898. "bcmath",
  8899. "bigdecimal",
  8900. "math",
  8901. "polyfill"
  8902. ],
  8903. "time": "2020-04-26T16:34:33+00:00"
  8904. },
  8905. {
  8906. "name": "phpseclib/phpseclib",
  8907. "version": "2.0.29",
  8908. "source": {
  8909. "type": "git",
  8910. "url": "https://github.com/phpseclib/phpseclib.git",
  8911. "reference": "497856a8d997f640b4a516062f84228a772a48a8"
  8912. },
  8913. "dist": {
  8914. "type": "zip",
  8915. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/497856a8d997f640b4a516062f84228a772a48a8",
  8916. "reference": "497856a8d997f640b4a516062f84228a772a48a8",
  8917. "shasum": ""
  8918. },
  8919. "require": {
  8920. "php": ">=5.3.3"
  8921. },
  8922. "require-dev": {
  8923. "phing/phing": "~2.7",
  8924. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  8925. "squizlabs/php_codesniffer": "~2.0"
  8926. },
  8927. "suggest": {
  8928. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  8929. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  8930. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  8931. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  8932. },
  8933. "type": "library",
  8934. "autoload": {
  8935. "files": [
  8936. "phpseclib/bootstrap.php"
  8937. ],
  8938. "psr-4": {
  8939. "phpseclib\\": "phpseclib/"
  8940. }
  8941. },
  8942. "notification-url": "https://packagist.org/downloads/",
  8943. "license": [
  8944. "MIT"
  8945. ],
  8946. "authors": [
  8947. {
  8948. "name": "Jim Wigginton",
  8949. "email": "terrafrost@php.net",
  8950. "role": "Lead Developer"
  8951. },
  8952. {
  8953. "name": "Patrick Monnerat",
  8954. "email": "pm@datasphere.ch",
  8955. "role": "Developer"
  8956. },
  8957. {
  8958. "name": "Andreas Fischer",
  8959. "email": "bantu@phpbb.com",
  8960. "role": "Developer"
  8961. },
  8962. {
  8963. "name": "Hans-Jürgen Petrich",
  8964. "email": "petrich@tronic-media.com",
  8965. "role": "Developer"
  8966. },
  8967. {
  8968. "name": "Graham Campbell",
  8969. "email": "graham@alt-three.com",
  8970. "role": "Developer"
  8971. }
  8972. ],
  8973. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  8974. "homepage": "http://phpseclib.sourceforge.net",
  8975. "keywords": [
  8976. "BigInteger",
  8977. "aes",
  8978. "asn.1",
  8979. "asn1",
  8980. "blowfish",
  8981. "crypto",
  8982. "cryptography",
  8983. "encryption",
  8984. "rsa",
  8985. "security",
  8986. "sftp",
  8987. "signature",
  8988. "signing",
  8989. "ssh",
  8990. "twofish",
  8991. "x.509",
  8992. "x509"
  8993. ],
  8994. "support": {
  8995. "issues": "https://github.com/phpseclib/phpseclib/issues",
  8996. "source": "https://github.com/phpseclib/phpseclib/tree/2.0"
  8997. },
  8998. "funding": [
  8999. {
  9000. "url": "https://github.com/terrafrost",
  9001. "type": "github"
  9002. },
  9003. {
  9004. "url": "https://www.patreon.com/phpseclib",
  9005. "type": "patreon"
  9006. },
  9007. {
  9008. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  9009. "type": "tidelift"
  9010. }
  9011. ],
  9012. "time": "2020-09-08T04:24:43+00:00"
  9013. },
  9014. {
  9015. "name": "phpspec/prophecy",
  9016. "version": "1.12.1",
  9017. "source": {
  9018. "type": "git",
  9019. "url": "https://github.com/phpspec/prophecy.git",
  9020. "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d"
  9021. },
  9022. "dist": {
  9023. "type": "zip",
  9024. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/8ce87516be71aae9b956f81906aaf0338e0d8a2d",
  9025. "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d",
  9026. "shasum": ""
  9027. },
  9028. "require": {
  9029. "doctrine/instantiator": "^1.2",
  9030. "php": "^7.2 || ~8.0, <8.1",
  9031. "phpdocumentor/reflection-docblock": "^5.2",
  9032. "sebastian/comparator": "^3.0 || ^4.0",
  9033. "sebastian/recursion-context": "^3.0 || ^4.0"
  9034. },
  9035. "require-dev": {
  9036. "phpspec/phpspec": "^6.0",
  9037. "phpunit/phpunit": "^8.0 || ^9.0 <9.3"
  9038. },
  9039. "type": "library",
  9040. "extra": {
  9041. "branch-alias": {
  9042. "dev-master": "1.11.x-dev"
  9043. }
  9044. },
  9045. "autoload": {
  9046. "psr-4": {
  9047. "Prophecy\\": "src/Prophecy"
  9048. }
  9049. },
  9050. "notification-url": "https://packagist.org/downloads/",
  9051. "license": [
  9052. "MIT"
  9053. ],
  9054. "authors": [
  9055. {
  9056. "name": "Konstantin Kudryashov",
  9057. "email": "ever.zet@gmail.com",
  9058. "homepage": "http://everzet.com"
  9059. },
  9060. {
  9061. "name": "Marcello Duarte",
  9062. "email": "marcello.duarte@gmail.com"
  9063. }
  9064. ],
  9065. "description": "Highly opinionated mocking framework for PHP 5.3+",
  9066. "homepage": "https://github.com/phpspec/prophecy",
  9067. "keywords": [
  9068. "Double",
  9069. "Dummy",
  9070. "fake",
  9071. "mock",
  9072. "spy",
  9073. "stub"
  9074. ],
  9075. "time": "2020-09-29T09:10:42+00:00"
  9076. },
  9077. {
  9078. "name": "phpunit/php-code-coverage",
  9079. "version": "7.0.10",
  9080. "source": {
  9081. "type": "git",
  9082. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9083. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf"
  9084. },
  9085. "dist": {
  9086. "type": "zip",
  9087. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f1884187926fbb755a9aaf0b3836ad3165b478bf",
  9088. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf",
  9089. "shasum": ""
  9090. },
  9091. "require": {
  9092. "ext-dom": "*",
  9093. "ext-xmlwriter": "*",
  9094. "php": "^7.2",
  9095. "phpunit/php-file-iterator": "^2.0.2",
  9096. "phpunit/php-text-template": "^1.2.1",
  9097. "phpunit/php-token-stream": "^3.1.1",
  9098. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  9099. "sebastian/environment": "^4.2.2",
  9100. "sebastian/version": "^2.0.1",
  9101. "theseer/tokenizer": "^1.1.3"
  9102. },
  9103. "require-dev": {
  9104. "phpunit/phpunit": "^8.2.2"
  9105. },
  9106. "suggest": {
  9107. "ext-xdebug": "^2.7.2"
  9108. },
  9109. "type": "library",
  9110. "extra": {
  9111. "branch-alias": {
  9112. "dev-master": "7.0-dev"
  9113. }
  9114. },
  9115. "autoload": {
  9116. "classmap": [
  9117. "src/"
  9118. ]
  9119. },
  9120. "notification-url": "https://packagist.org/downloads/",
  9121. "license": [
  9122. "BSD-3-Clause"
  9123. ],
  9124. "authors": [
  9125. {
  9126. "name": "Sebastian Bergmann",
  9127. "email": "sebastian@phpunit.de",
  9128. "role": "lead"
  9129. }
  9130. ],
  9131. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9132. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9133. "keywords": [
  9134. "coverage",
  9135. "testing",
  9136. "xunit"
  9137. ],
  9138. "time": "2019-11-20T13:55:58+00:00"
  9139. },
  9140. {
  9141. "name": "phpunit/php-file-iterator",
  9142. "version": "2.0.2",
  9143. "source": {
  9144. "type": "git",
  9145. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9146. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  9147. },
  9148. "dist": {
  9149. "type": "zip",
  9150. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  9151. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  9152. "shasum": ""
  9153. },
  9154. "require": {
  9155. "php": "^7.1"
  9156. },
  9157. "require-dev": {
  9158. "phpunit/phpunit": "^7.1"
  9159. },
  9160. "type": "library",
  9161. "extra": {
  9162. "branch-alias": {
  9163. "dev-master": "2.0.x-dev"
  9164. }
  9165. },
  9166. "autoload": {
  9167. "classmap": [
  9168. "src/"
  9169. ]
  9170. },
  9171. "notification-url": "https://packagist.org/downloads/",
  9172. "license": [
  9173. "BSD-3-Clause"
  9174. ],
  9175. "authors": [
  9176. {
  9177. "name": "Sebastian Bergmann",
  9178. "email": "sebastian@phpunit.de",
  9179. "role": "lead"
  9180. }
  9181. ],
  9182. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9183. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9184. "keywords": [
  9185. "filesystem",
  9186. "iterator"
  9187. ],
  9188. "time": "2018-09-13T20:33:42+00:00"
  9189. },
  9190. {
  9191. "name": "phpunit/php-text-template",
  9192. "version": "1.2.1",
  9193. "source": {
  9194. "type": "git",
  9195. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9196. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  9197. },
  9198. "dist": {
  9199. "type": "zip",
  9200. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9201. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9202. "shasum": ""
  9203. },
  9204. "require": {
  9205. "php": ">=5.3.3"
  9206. },
  9207. "type": "library",
  9208. "autoload": {
  9209. "classmap": [
  9210. "src/"
  9211. ]
  9212. },
  9213. "notification-url": "https://packagist.org/downloads/",
  9214. "license": [
  9215. "BSD-3-Clause"
  9216. ],
  9217. "authors": [
  9218. {
  9219. "name": "Sebastian Bergmann",
  9220. "email": "sebastian@phpunit.de",
  9221. "role": "lead"
  9222. }
  9223. ],
  9224. "description": "Simple template engine.",
  9225. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9226. "keywords": [
  9227. "template"
  9228. ],
  9229. "time": "2015-06-21T13:50:34+00:00"
  9230. },
  9231. {
  9232. "name": "phpunit/php-timer",
  9233. "version": "2.1.2",
  9234. "source": {
  9235. "type": "git",
  9236. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9237. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
  9238. },
  9239. "dist": {
  9240. "type": "zip",
  9241. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
  9242. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
  9243. "shasum": ""
  9244. },
  9245. "require": {
  9246. "php": "^7.1"
  9247. },
  9248. "require-dev": {
  9249. "phpunit/phpunit": "^7.0"
  9250. },
  9251. "type": "library",
  9252. "extra": {
  9253. "branch-alias": {
  9254. "dev-master": "2.1-dev"
  9255. }
  9256. },
  9257. "autoload": {
  9258. "classmap": [
  9259. "src/"
  9260. ]
  9261. },
  9262. "notification-url": "https://packagist.org/downloads/",
  9263. "license": [
  9264. "BSD-3-Clause"
  9265. ],
  9266. "authors": [
  9267. {
  9268. "name": "Sebastian Bergmann",
  9269. "email": "sebastian@phpunit.de",
  9270. "role": "lead"
  9271. }
  9272. ],
  9273. "description": "Utility class for timing",
  9274. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9275. "keywords": [
  9276. "timer"
  9277. ],
  9278. "time": "2019-06-07T04:22:29+00:00"
  9279. },
  9280. {
  9281. "name": "phpunit/php-token-stream",
  9282. "version": "3.1.1",
  9283. "source": {
  9284. "type": "git",
  9285. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  9286. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
  9287. },
  9288. "dist": {
  9289. "type": "zip",
  9290. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
  9291. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
  9292. "shasum": ""
  9293. },
  9294. "require": {
  9295. "ext-tokenizer": "*",
  9296. "php": "^7.1"
  9297. },
  9298. "require-dev": {
  9299. "phpunit/phpunit": "^7.0"
  9300. },
  9301. "type": "library",
  9302. "extra": {
  9303. "branch-alias": {
  9304. "dev-master": "3.1-dev"
  9305. }
  9306. },
  9307. "autoload": {
  9308. "classmap": [
  9309. "src/"
  9310. ]
  9311. },
  9312. "notification-url": "https://packagist.org/downloads/",
  9313. "license": [
  9314. "BSD-3-Clause"
  9315. ],
  9316. "authors": [
  9317. {
  9318. "name": "Sebastian Bergmann",
  9319. "email": "sebastian@phpunit.de"
  9320. }
  9321. ],
  9322. "description": "Wrapper around PHP's tokenizer extension.",
  9323. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  9324. "keywords": [
  9325. "tokenizer"
  9326. ],
  9327. "abandoned": true,
  9328. "time": "2019-09-17T06:23:10+00:00"
  9329. },
  9330. {
  9331. "name": "phpunit/phpunit",
  9332. "version": "8.5.8",
  9333. "source": {
  9334. "type": "git",
  9335. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9336. "reference": "34c18baa6a44f1d1fbf0338907139e9dce95b997"
  9337. },
  9338. "dist": {
  9339. "type": "zip",
  9340. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/34c18baa6a44f1d1fbf0338907139e9dce95b997",
  9341. "reference": "34c18baa6a44f1d1fbf0338907139e9dce95b997",
  9342. "shasum": ""
  9343. },
  9344. "require": {
  9345. "doctrine/instantiator": "^1.2.0",
  9346. "ext-dom": "*",
  9347. "ext-json": "*",
  9348. "ext-libxml": "*",
  9349. "ext-mbstring": "*",
  9350. "ext-xml": "*",
  9351. "ext-xmlwriter": "*",
  9352. "myclabs/deep-copy": "^1.9.1",
  9353. "phar-io/manifest": "^1.0.3",
  9354. "phar-io/version": "^2.0.1",
  9355. "php": "^7.2",
  9356. "phpspec/prophecy": "^1.8.1",
  9357. "phpunit/php-code-coverage": "^7.0.7",
  9358. "phpunit/php-file-iterator": "^2.0.2",
  9359. "phpunit/php-text-template": "^1.2.1",
  9360. "phpunit/php-timer": "^2.1.2",
  9361. "sebastian/comparator": "^3.0.2",
  9362. "sebastian/diff": "^3.0.2",
  9363. "sebastian/environment": "^4.2.2",
  9364. "sebastian/exporter": "^3.1.1",
  9365. "sebastian/global-state": "^3.0.0",
  9366. "sebastian/object-enumerator": "^3.0.3",
  9367. "sebastian/resource-operations": "^2.0.1",
  9368. "sebastian/type": "^1.1.3",
  9369. "sebastian/version": "^2.0.1"
  9370. },
  9371. "require-dev": {
  9372. "ext-pdo": "*"
  9373. },
  9374. "suggest": {
  9375. "ext-soap": "*",
  9376. "ext-xdebug": "*",
  9377. "phpunit/php-invoker": "^2.0.0"
  9378. },
  9379. "bin": [
  9380. "phpunit"
  9381. ],
  9382. "type": "library",
  9383. "extra": {
  9384. "branch-alias": {
  9385. "dev-master": "8.5-dev"
  9386. }
  9387. },
  9388. "autoload": {
  9389. "classmap": [
  9390. "src/"
  9391. ]
  9392. },
  9393. "notification-url": "https://packagist.org/downloads/",
  9394. "license": [
  9395. "BSD-3-Clause"
  9396. ],
  9397. "authors": [
  9398. {
  9399. "name": "Sebastian Bergmann",
  9400. "email": "sebastian@phpunit.de",
  9401. "role": "lead"
  9402. }
  9403. ],
  9404. "description": "The PHP Unit Testing framework.",
  9405. "homepage": "https://phpunit.de/",
  9406. "keywords": [
  9407. "phpunit",
  9408. "testing",
  9409. "xunit"
  9410. ],
  9411. "funding": [
  9412. {
  9413. "url": "https://phpunit.de/donate.html",
  9414. "type": "custom"
  9415. },
  9416. {
  9417. "url": "https://github.com/sebastianbergmann",
  9418. "type": "github"
  9419. }
  9420. ],
  9421. "time": "2020-06-22T07:06:58+00:00"
  9422. },
  9423. {
  9424. "name": "scrivo/highlight.php",
  9425. "version": "v9.18.1.2",
  9426. "source": {
  9427. "type": "git",
  9428. "url": "https://github.com/scrivo/highlight.php.git",
  9429. "reference": "efb6e445494a9458aa59b0af5edfa4bdcc6809d9"
  9430. },
  9431. "dist": {
  9432. "type": "zip",
  9433. "url": "https://api.github.com/repos/scrivo/highlight.php/zipball/efb6e445494a9458aa59b0af5edfa4bdcc6809d9",
  9434. "reference": "efb6e445494a9458aa59b0af5edfa4bdcc6809d9",
  9435. "shasum": ""
  9436. },
  9437. "require": {
  9438. "ext-json": "*",
  9439. "ext-mbstring": "*",
  9440. "php": ">=5.4"
  9441. },
  9442. "require-dev": {
  9443. "phpunit/phpunit": "^4.8|^5.7",
  9444. "sabberworm/php-css-parser": "^8.3",
  9445. "symfony/finder": "^2.8|^3.4",
  9446. "symfony/var-dumper": "^2.8|^3.4"
  9447. },
  9448. "suggest": {
  9449. "ext-dom": "Needed to make use of the features in the utilities namespace"
  9450. },
  9451. "type": "library",
  9452. "autoload": {
  9453. "psr-0": {
  9454. "Highlight\\": "",
  9455. "HighlightUtilities\\": ""
  9456. },
  9457. "files": [
  9458. "HighlightUtilities/functions.php"
  9459. ]
  9460. },
  9461. "notification-url": "https://packagist.org/downloads/",
  9462. "license": [
  9463. "BSD-3-Clause"
  9464. ],
  9465. "authors": [
  9466. {
  9467. "name": "Geert Bergman",
  9468. "homepage": "http://www.scrivo.org/",
  9469. "role": "Project Author"
  9470. },
  9471. {
  9472. "name": "Vladimir Jimenez",
  9473. "homepage": "https://allejo.io",
  9474. "role": "Maintainer"
  9475. },
  9476. {
  9477. "name": "Martin Folkers",
  9478. "homepage": "https://twobrain.io",
  9479. "role": "Contributor"
  9480. }
  9481. ],
  9482. "description": "Server side syntax highlighter that supports 185 languages. It's a PHP port of highlight.js",
  9483. "keywords": [
  9484. "code",
  9485. "highlight",
  9486. "highlight.js",
  9487. "highlight.php",
  9488. "syntax"
  9489. ],
  9490. "funding": [
  9491. {
  9492. "url": "https://github.com/allejo",
  9493. "type": "github"
  9494. }
  9495. ],
  9496. "time": "2020-08-27T03:24:44+00:00"
  9497. },
  9498. {
  9499. "name": "sebastian/code-unit-reverse-lookup",
  9500. "version": "1.0.1",
  9501. "source": {
  9502. "type": "git",
  9503. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9504. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  9505. },
  9506. "dist": {
  9507. "type": "zip",
  9508. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  9509. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  9510. "shasum": ""
  9511. },
  9512. "require": {
  9513. "php": "^5.6 || ^7.0"
  9514. },
  9515. "require-dev": {
  9516. "phpunit/phpunit": "^5.7 || ^6.0"
  9517. },
  9518. "type": "library",
  9519. "extra": {
  9520. "branch-alias": {
  9521. "dev-master": "1.0.x-dev"
  9522. }
  9523. },
  9524. "autoload": {
  9525. "classmap": [
  9526. "src/"
  9527. ]
  9528. },
  9529. "notification-url": "https://packagist.org/downloads/",
  9530. "license": [
  9531. "BSD-3-Clause"
  9532. ],
  9533. "authors": [
  9534. {
  9535. "name": "Sebastian Bergmann",
  9536. "email": "sebastian@phpunit.de"
  9537. }
  9538. ],
  9539. "description": "Looks up which function or method a line of code belongs to",
  9540. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9541. "time": "2017-03-04T06:30:41+00:00"
  9542. },
  9543. {
  9544. "name": "sebastian/comparator",
  9545. "version": "3.0.2",
  9546. "source": {
  9547. "type": "git",
  9548. "url": "https://github.com/sebastianbergmann/comparator.git",
  9549. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  9550. },
  9551. "dist": {
  9552. "type": "zip",
  9553. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  9554. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  9555. "shasum": ""
  9556. },
  9557. "require": {
  9558. "php": "^7.1",
  9559. "sebastian/diff": "^3.0",
  9560. "sebastian/exporter": "^3.1"
  9561. },
  9562. "require-dev": {
  9563. "phpunit/phpunit": "^7.1"
  9564. },
  9565. "type": "library",
  9566. "extra": {
  9567. "branch-alias": {
  9568. "dev-master": "3.0-dev"
  9569. }
  9570. },
  9571. "autoload": {
  9572. "classmap": [
  9573. "src/"
  9574. ]
  9575. },
  9576. "notification-url": "https://packagist.org/downloads/",
  9577. "license": [
  9578. "BSD-3-Clause"
  9579. ],
  9580. "authors": [
  9581. {
  9582. "name": "Jeff Welch",
  9583. "email": "whatthejeff@gmail.com"
  9584. },
  9585. {
  9586. "name": "Volker Dusch",
  9587. "email": "github@wallbash.com"
  9588. },
  9589. {
  9590. "name": "Bernhard Schussek",
  9591. "email": "bschussek@2bepublished.at"
  9592. },
  9593. {
  9594. "name": "Sebastian Bergmann",
  9595. "email": "sebastian@phpunit.de"
  9596. }
  9597. ],
  9598. "description": "Provides the functionality to compare PHP values for equality",
  9599. "homepage": "https://github.com/sebastianbergmann/comparator",
  9600. "keywords": [
  9601. "comparator",
  9602. "compare",
  9603. "equality"
  9604. ],
  9605. "time": "2018-07-12T15:12:46+00:00"
  9606. },
  9607. {
  9608. "name": "sebastian/diff",
  9609. "version": "3.0.2",
  9610. "source": {
  9611. "type": "git",
  9612. "url": "https://github.com/sebastianbergmann/diff.git",
  9613. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  9614. },
  9615. "dist": {
  9616. "type": "zip",
  9617. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  9618. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  9619. "shasum": ""
  9620. },
  9621. "require": {
  9622. "php": "^7.1"
  9623. },
  9624. "require-dev": {
  9625. "phpunit/phpunit": "^7.5 || ^8.0",
  9626. "symfony/process": "^2 || ^3.3 || ^4"
  9627. },
  9628. "type": "library",
  9629. "extra": {
  9630. "branch-alias": {
  9631. "dev-master": "3.0-dev"
  9632. }
  9633. },
  9634. "autoload": {
  9635. "classmap": [
  9636. "src/"
  9637. ]
  9638. },
  9639. "notification-url": "https://packagist.org/downloads/",
  9640. "license": [
  9641. "BSD-3-Clause"
  9642. ],
  9643. "authors": [
  9644. {
  9645. "name": "Kore Nordmann",
  9646. "email": "mail@kore-nordmann.de"
  9647. },
  9648. {
  9649. "name": "Sebastian Bergmann",
  9650. "email": "sebastian@phpunit.de"
  9651. }
  9652. ],
  9653. "description": "Diff implementation",
  9654. "homepage": "https://github.com/sebastianbergmann/diff",
  9655. "keywords": [
  9656. "diff",
  9657. "udiff",
  9658. "unidiff",
  9659. "unified diff"
  9660. ],
  9661. "time": "2019-02-04T06:01:07+00:00"
  9662. },
  9663. {
  9664. "name": "sebastian/environment",
  9665. "version": "4.2.3",
  9666. "source": {
  9667. "type": "git",
  9668. "url": "https://github.com/sebastianbergmann/environment.git",
  9669. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368"
  9670. },
  9671. "dist": {
  9672. "type": "zip",
  9673. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  9674. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  9675. "shasum": ""
  9676. },
  9677. "require": {
  9678. "php": "^7.1"
  9679. },
  9680. "require-dev": {
  9681. "phpunit/phpunit": "^7.5"
  9682. },
  9683. "suggest": {
  9684. "ext-posix": "*"
  9685. },
  9686. "type": "library",
  9687. "extra": {
  9688. "branch-alias": {
  9689. "dev-master": "4.2-dev"
  9690. }
  9691. },
  9692. "autoload": {
  9693. "classmap": [
  9694. "src/"
  9695. ]
  9696. },
  9697. "notification-url": "https://packagist.org/downloads/",
  9698. "license": [
  9699. "BSD-3-Clause"
  9700. ],
  9701. "authors": [
  9702. {
  9703. "name": "Sebastian Bergmann",
  9704. "email": "sebastian@phpunit.de"
  9705. }
  9706. ],
  9707. "description": "Provides functionality to handle HHVM/PHP environments",
  9708. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9709. "keywords": [
  9710. "Xdebug",
  9711. "environment",
  9712. "hhvm"
  9713. ],
  9714. "time": "2019-11-20T08:46:58+00:00"
  9715. },
  9716. {
  9717. "name": "sebastian/exporter",
  9718. "version": "3.1.2",
  9719. "source": {
  9720. "type": "git",
  9721. "url": "https://github.com/sebastianbergmann/exporter.git",
  9722. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  9723. },
  9724. "dist": {
  9725. "type": "zip",
  9726. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  9727. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  9728. "shasum": ""
  9729. },
  9730. "require": {
  9731. "php": "^7.0",
  9732. "sebastian/recursion-context": "^3.0"
  9733. },
  9734. "require-dev": {
  9735. "ext-mbstring": "*",
  9736. "phpunit/phpunit": "^6.0"
  9737. },
  9738. "type": "library",
  9739. "extra": {
  9740. "branch-alias": {
  9741. "dev-master": "3.1.x-dev"
  9742. }
  9743. },
  9744. "autoload": {
  9745. "classmap": [
  9746. "src/"
  9747. ]
  9748. },
  9749. "notification-url": "https://packagist.org/downloads/",
  9750. "license": [
  9751. "BSD-3-Clause"
  9752. ],
  9753. "authors": [
  9754. {
  9755. "name": "Sebastian Bergmann",
  9756. "email": "sebastian@phpunit.de"
  9757. },
  9758. {
  9759. "name": "Jeff Welch",
  9760. "email": "whatthejeff@gmail.com"
  9761. },
  9762. {
  9763. "name": "Volker Dusch",
  9764. "email": "github@wallbash.com"
  9765. },
  9766. {
  9767. "name": "Adam Harvey",
  9768. "email": "aharvey@php.net"
  9769. },
  9770. {
  9771. "name": "Bernhard Schussek",
  9772. "email": "bschussek@gmail.com"
  9773. }
  9774. ],
  9775. "description": "Provides the functionality to export PHP variables for visualization",
  9776. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  9777. "keywords": [
  9778. "export",
  9779. "exporter"
  9780. ],
  9781. "time": "2019-09-14T09:02:43+00:00"
  9782. },
  9783. {
  9784. "name": "sebastian/global-state",
  9785. "version": "3.0.0",
  9786. "source": {
  9787. "type": "git",
  9788. "url": "https://github.com/sebastianbergmann/global-state.git",
  9789. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4"
  9790. },
  9791. "dist": {
  9792. "type": "zip",
  9793. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  9794. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  9795. "shasum": ""
  9796. },
  9797. "require": {
  9798. "php": "^7.2",
  9799. "sebastian/object-reflector": "^1.1.1",
  9800. "sebastian/recursion-context": "^3.0"
  9801. },
  9802. "require-dev": {
  9803. "ext-dom": "*",
  9804. "phpunit/phpunit": "^8.0"
  9805. },
  9806. "suggest": {
  9807. "ext-uopz": "*"
  9808. },
  9809. "type": "library",
  9810. "extra": {
  9811. "branch-alias": {
  9812. "dev-master": "3.0-dev"
  9813. }
  9814. },
  9815. "autoload": {
  9816. "classmap": [
  9817. "src/"
  9818. ]
  9819. },
  9820. "notification-url": "https://packagist.org/downloads/",
  9821. "license": [
  9822. "BSD-3-Clause"
  9823. ],
  9824. "authors": [
  9825. {
  9826. "name": "Sebastian Bergmann",
  9827. "email": "sebastian@phpunit.de"
  9828. }
  9829. ],
  9830. "description": "Snapshotting of global state",
  9831. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9832. "keywords": [
  9833. "global state"
  9834. ],
  9835. "time": "2019-02-01T05:30:01+00:00"
  9836. },
  9837. {
  9838. "name": "sebastian/object-enumerator",
  9839. "version": "3.0.3",
  9840. "source": {
  9841. "type": "git",
  9842. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9843. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  9844. },
  9845. "dist": {
  9846. "type": "zip",
  9847. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  9848. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  9849. "shasum": ""
  9850. },
  9851. "require": {
  9852. "php": "^7.0",
  9853. "sebastian/object-reflector": "^1.1.1",
  9854. "sebastian/recursion-context": "^3.0"
  9855. },
  9856. "require-dev": {
  9857. "phpunit/phpunit": "^6.0"
  9858. },
  9859. "type": "library",
  9860. "extra": {
  9861. "branch-alias": {
  9862. "dev-master": "3.0.x-dev"
  9863. }
  9864. },
  9865. "autoload": {
  9866. "classmap": [
  9867. "src/"
  9868. ]
  9869. },
  9870. "notification-url": "https://packagist.org/downloads/",
  9871. "license": [
  9872. "BSD-3-Clause"
  9873. ],
  9874. "authors": [
  9875. {
  9876. "name": "Sebastian Bergmann",
  9877. "email": "sebastian@phpunit.de"
  9878. }
  9879. ],
  9880. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9881. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9882. "time": "2017-08-03T12:35:26+00:00"
  9883. },
  9884. {
  9885. "name": "sebastian/object-reflector",
  9886. "version": "1.1.1",
  9887. "source": {
  9888. "type": "git",
  9889. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9890. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  9891. },
  9892. "dist": {
  9893. "type": "zip",
  9894. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  9895. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  9896. "shasum": ""
  9897. },
  9898. "require": {
  9899. "php": "^7.0"
  9900. },
  9901. "require-dev": {
  9902. "phpunit/phpunit": "^6.0"
  9903. },
  9904. "type": "library",
  9905. "extra": {
  9906. "branch-alias": {
  9907. "dev-master": "1.1-dev"
  9908. }
  9909. },
  9910. "autoload": {
  9911. "classmap": [
  9912. "src/"
  9913. ]
  9914. },
  9915. "notification-url": "https://packagist.org/downloads/",
  9916. "license": [
  9917. "BSD-3-Clause"
  9918. ],
  9919. "authors": [
  9920. {
  9921. "name": "Sebastian Bergmann",
  9922. "email": "sebastian@phpunit.de"
  9923. }
  9924. ],
  9925. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9926. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9927. "time": "2017-03-29T09:07:27+00:00"
  9928. },
  9929. {
  9930. "name": "sebastian/recursion-context",
  9931. "version": "3.0.0",
  9932. "source": {
  9933. "type": "git",
  9934. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9935. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  9936. },
  9937. "dist": {
  9938. "type": "zip",
  9939. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  9940. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  9941. "shasum": ""
  9942. },
  9943. "require": {
  9944. "php": "^7.0"
  9945. },
  9946. "require-dev": {
  9947. "phpunit/phpunit": "^6.0"
  9948. },
  9949. "type": "library",
  9950. "extra": {
  9951. "branch-alias": {
  9952. "dev-master": "3.0.x-dev"
  9953. }
  9954. },
  9955. "autoload": {
  9956. "classmap": [
  9957. "src/"
  9958. ]
  9959. },
  9960. "notification-url": "https://packagist.org/downloads/",
  9961. "license": [
  9962. "BSD-3-Clause"
  9963. ],
  9964. "authors": [
  9965. {
  9966. "name": "Jeff Welch",
  9967. "email": "whatthejeff@gmail.com"
  9968. },
  9969. {
  9970. "name": "Sebastian Bergmann",
  9971. "email": "sebastian@phpunit.de"
  9972. },
  9973. {
  9974. "name": "Adam Harvey",
  9975. "email": "aharvey@php.net"
  9976. }
  9977. ],
  9978. "description": "Provides functionality to recursively process PHP variables",
  9979. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  9980. "time": "2017-03-03T06:23:57+00:00"
  9981. },
  9982. {
  9983. "name": "sebastian/resource-operations",
  9984. "version": "2.0.1",
  9985. "source": {
  9986. "type": "git",
  9987. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9988. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  9989. },
  9990. "dist": {
  9991. "type": "zip",
  9992. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  9993. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  9994. "shasum": ""
  9995. },
  9996. "require": {
  9997. "php": "^7.1"
  9998. },
  9999. "type": "library",
  10000. "extra": {
  10001. "branch-alias": {
  10002. "dev-master": "2.0-dev"
  10003. }
  10004. },
  10005. "autoload": {
  10006. "classmap": [
  10007. "src/"
  10008. ]
  10009. },
  10010. "notification-url": "https://packagist.org/downloads/",
  10011. "license": [
  10012. "BSD-3-Clause"
  10013. ],
  10014. "authors": [
  10015. {
  10016. "name": "Sebastian Bergmann",
  10017. "email": "sebastian@phpunit.de"
  10018. }
  10019. ],
  10020. "description": "Provides a list of PHP built-in functions that operate on resources",
  10021. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10022. "time": "2018-10-04T04:07:39+00:00"
  10023. },
  10024. {
  10025. "name": "sebastian/type",
  10026. "version": "1.1.3",
  10027. "source": {
  10028. "type": "git",
  10029. "url": "https://github.com/sebastianbergmann/type.git",
  10030. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3"
  10031. },
  10032. "dist": {
  10033. "type": "zip",
  10034. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/3aaaa15fa71d27650d62a948be022fe3b48541a3",
  10035. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3",
  10036. "shasum": ""
  10037. },
  10038. "require": {
  10039. "php": "^7.2"
  10040. },
  10041. "require-dev": {
  10042. "phpunit/phpunit": "^8.2"
  10043. },
  10044. "type": "library",
  10045. "extra": {
  10046. "branch-alias": {
  10047. "dev-master": "1.1-dev"
  10048. }
  10049. },
  10050. "autoload": {
  10051. "classmap": [
  10052. "src/"
  10053. ]
  10054. },
  10055. "notification-url": "https://packagist.org/downloads/",
  10056. "license": [
  10057. "BSD-3-Clause"
  10058. ],
  10059. "authors": [
  10060. {
  10061. "name": "Sebastian Bergmann",
  10062. "email": "sebastian@phpunit.de",
  10063. "role": "lead"
  10064. }
  10065. ],
  10066. "description": "Collection of value objects that represent the types of the PHP type system",
  10067. "homepage": "https://github.com/sebastianbergmann/type",
  10068. "time": "2019-07-02T08:10:15+00:00"
  10069. },
  10070. {
  10071. "name": "sebastian/version",
  10072. "version": "2.0.1",
  10073. "source": {
  10074. "type": "git",
  10075. "url": "https://github.com/sebastianbergmann/version.git",
  10076. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  10077. },
  10078. "dist": {
  10079. "type": "zip",
  10080. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  10081. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  10082. "shasum": ""
  10083. },
  10084. "require": {
  10085. "php": ">=5.6"
  10086. },
  10087. "type": "library",
  10088. "extra": {
  10089. "branch-alias": {
  10090. "dev-master": "2.0.x-dev"
  10091. }
  10092. },
  10093. "autoload": {
  10094. "classmap": [
  10095. "src/"
  10096. ]
  10097. },
  10098. "notification-url": "https://packagist.org/downloads/",
  10099. "license": [
  10100. "BSD-3-Clause"
  10101. ],
  10102. "authors": [
  10103. {
  10104. "name": "Sebastian Bergmann",
  10105. "email": "sebastian@phpunit.de",
  10106. "role": "lead"
  10107. }
  10108. ],
  10109. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10110. "homepage": "https://github.com/sebastianbergmann/version",
  10111. "time": "2016-10-03T07:35:21+00:00"
  10112. },
  10113. {
  10114. "name": "seld/jsonlint",
  10115. "version": "1.8.2",
  10116. "source": {
  10117. "type": "git",
  10118. "url": "https://github.com/Seldaek/jsonlint.git",
  10119. "reference": "590cfec960b77fd55e39b7d9246659e95dd6d337"
  10120. },
  10121. "dist": {
  10122. "type": "zip",
  10123. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/590cfec960b77fd55e39b7d9246659e95dd6d337",
  10124. "reference": "590cfec960b77fd55e39b7d9246659e95dd6d337",
  10125. "shasum": ""
  10126. },
  10127. "require": {
  10128. "php": "^5.3 || ^7.0 || ^8.0"
  10129. },
  10130. "require-dev": {
  10131. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  10132. },
  10133. "bin": [
  10134. "bin/jsonlint"
  10135. ],
  10136. "type": "library",
  10137. "autoload": {
  10138. "psr-4": {
  10139. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  10140. }
  10141. },
  10142. "notification-url": "https://packagist.org/downloads/",
  10143. "license": [
  10144. "MIT"
  10145. ],
  10146. "authors": [
  10147. {
  10148. "name": "Jordi Boggiano",
  10149. "email": "j.boggiano@seld.be",
  10150. "homepage": "http://seld.be"
  10151. }
  10152. ],
  10153. "description": "JSON Linter",
  10154. "keywords": [
  10155. "json",
  10156. "linter",
  10157. "parser",
  10158. "validator"
  10159. ],
  10160. "funding": [
  10161. {
  10162. "url": "https://github.com/Seldaek",
  10163. "type": "github"
  10164. },
  10165. {
  10166. "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
  10167. "type": "tidelift"
  10168. }
  10169. ],
  10170. "time": "2020-08-25T06:56:57+00:00"
  10171. },
  10172. {
  10173. "name": "seld/phar-utils",
  10174. "version": "1.1.1",
  10175. "source": {
  10176. "type": "git",
  10177. "url": "https://github.com/Seldaek/phar-utils.git",
  10178. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796"
  10179. },
  10180. "dist": {
  10181. "type": "zip",
  10182. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  10183. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  10184. "shasum": ""
  10185. },
  10186. "require": {
  10187. "php": ">=5.3"
  10188. },
  10189. "type": "library",
  10190. "extra": {
  10191. "branch-alias": {
  10192. "dev-master": "1.x-dev"
  10193. }
  10194. },
  10195. "autoload": {
  10196. "psr-4": {
  10197. "Seld\\PharUtils\\": "src/"
  10198. }
  10199. },
  10200. "notification-url": "https://packagist.org/downloads/",
  10201. "license": [
  10202. "MIT"
  10203. ],
  10204. "authors": [
  10205. {
  10206. "name": "Jordi Boggiano",
  10207. "email": "j.boggiano@seld.be"
  10208. }
  10209. ],
  10210. "description": "PHAR file format utilities, for when PHP phars you up",
  10211. "keywords": [
  10212. "phar"
  10213. ],
  10214. "time": "2020-07-07T18:42:57+00:00"
  10215. },
  10216. {
  10217. "name": "symfony/debug",
  10218. "version": "v4.4.14",
  10219. "source": {
  10220. "type": "git",
  10221. "url": "https://github.com/symfony/debug.git",
  10222. "reference": "726b85e69342e767d60e3853b98559a68ff74183"
  10223. },
  10224. "dist": {
  10225. "type": "zip",
  10226. "url": "https://api.github.com/repos/symfony/debug/zipball/726b85e69342e767d60e3853b98559a68ff74183",
  10227. "reference": "726b85e69342e767d60e3853b98559a68ff74183",
  10228. "shasum": ""
  10229. },
  10230. "require": {
  10231. "php": ">=7.1.3",
  10232. "psr/log": "~1.0",
  10233. "symfony/polyfill-php80": "^1.15"
  10234. },
  10235. "conflict": {
  10236. "symfony/http-kernel": "<3.4"
  10237. },
  10238. "require-dev": {
  10239. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  10240. },
  10241. "type": "library",
  10242. "extra": {
  10243. "branch-alias": {
  10244. "dev-master": "4.4-dev"
  10245. }
  10246. },
  10247. "autoload": {
  10248. "psr-4": {
  10249. "Symfony\\Component\\Debug\\": ""
  10250. },
  10251. "exclude-from-classmap": [
  10252. "/Tests/"
  10253. ]
  10254. },
  10255. "notification-url": "https://packagist.org/downloads/",
  10256. "license": [
  10257. "MIT"
  10258. ],
  10259. "authors": [
  10260. {
  10261. "name": "Fabien Potencier",
  10262. "email": "fabien@symfony.com"
  10263. },
  10264. {
  10265. "name": "Symfony Community",
  10266. "homepage": "https://symfony.com/contributors"
  10267. }
  10268. ],
  10269. "description": "Symfony Debug Component",
  10270. "homepage": "https://symfony.com",
  10271. "funding": [
  10272. {
  10273. "url": "https://symfony.com/sponsor",
  10274. "type": "custom"
  10275. },
  10276. {
  10277. "url": "https://github.com/fabpot",
  10278. "type": "github"
  10279. },
  10280. {
  10281. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10282. "type": "tidelift"
  10283. }
  10284. ],
  10285. "time": "2020-09-09T05:20:36+00:00"
  10286. },
  10287. {
  10288. "name": "symfony/filesystem",
  10289. "version": "v5.1.6",
  10290. "source": {
  10291. "type": "git",
  10292. "url": "https://github.com/symfony/filesystem.git",
  10293. "reference": "f3194303d3077829dbbc1d18f50288b2a01146f2"
  10294. },
  10295. "dist": {
  10296. "type": "zip",
  10297. "url": "https://api.github.com/repos/symfony/filesystem/zipball/f3194303d3077829dbbc1d18f50288b2a01146f2",
  10298. "reference": "f3194303d3077829dbbc1d18f50288b2a01146f2",
  10299. "shasum": ""
  10300. },
  10301. "require": {
  10302. "php": ">=7.2.5",
  10303. "symfony/polyfill-ctype": "~1.8"
  10304. },
  10305. "type": "library",
  10306. "extra": {
  10307. "branch-alias": {
  10308. "dev-master": "5.1-dev"
  10309. }
  10310. },
  10311. "autoload": {
  10312. "psr-4": {
  10313. "Symfony\\Component\\Filesystem\\": ""
  10314. },
  10315. "exclude-from-classmap": [
  10316. "/Tests/"
  10317. ]
  10318. },
  10319. "notification-url": "https://packagist.org/downloads/",
  10320. "license": [
  10321. "MIT"
  10322. ],
  10323. "authors": [
  10324. {
  10325. "name": "Fabien Potencier",
  10326. "email": "fabien@symfony.com"
  10327. },
  10328. {
  10329. "name": "Symfony Community",
  10330. "homepage": "https://symfony.com/contributors"
  10331. }
  10332. ],
  10333. "description": "Symfony Filesystem Component",
  10334. "homepage": "https://symfony.com",
  10335. "funding": [
  10336. {
  10337. "url": "https://symfony.com/sponsor",
  10338. "type": "custom"
  10339. },
  10340. {
  10341. "url": "https://github.com/fabpot",
  10342. "type": "github"
  10343. },
  10344. {
  10345. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10346. "type": "tidelift"
  10347. }
  10348. ],
  10349. "time": "2020-09-02T16:23:27+00:00"
  10350. },
  10351. {
  10352. "name": "theseer/tokenizer",
  10353. "version": "1.2.0",
  10354. "source": {
  10355. "type": "git",
  10356. "url": "https://github.com/theseer/tokenizer.git",
  10357. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  10358. },
  10359. "dist": {
  10360. "type": "zip",
  10361. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  10362. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  10363. "shasum": ""
  10364. },
  10365. "require": {
  10366. "ext-dom": "*",
  10367. "ext-tokenizer": "*",
  10368. "ext-xmlwriter": "*",
  10369. "php": "^7.2 || ^8.0"
  10370. },
  10371. "type": "library",
  10372. "autoload": {
  10373. "classmap": [
  10374. "src/"
  10375. ]
  10376. },
  10377. "notification-url": "https://packagist.org/downloads/",
  10378. "license": [
  10379. "BSD-3-Clause"
  10380. ],
  10381. "authors": [
  10382. {
  10383. "name": "Arne Blankerts",
  10384. "email": "arne@blankerts.de",
  10385. "role": "Developer"
  10386. }
  10387. ],
  10388. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10389. "funding": [
  10390. {
  10391. "url": "https://github.com/theseer",
  10392. "type": "github"
  10393. }
  10394. ],
  10395. "time": "2020-07-12T23:59:07+00:00"
  10396. },
  10397. {
  10398. "name": "webmozart/assert",
  10399. "version": "1.9.1",
  10400. "source": {
  10401. "type": "git",
  10402. "url": "https://github.com/webmozart/assert.git",
  10403. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  10404. },
  10405. "dist": {
  10406. "type": "zip",
  10407. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  10408. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  10409. "shasum": ""
  10410. },
  10411. "require": {
  10412. "php": "^5.3.3 || ^7.0 || ^8.0",
  10413. "symfony/polyfill-ctype": "^1.8"
  10414. },
  10415. "conflict": {
  10416. "phpstan/phpstan": "<0.12.20",
  10417. "vimeo/psalm": "<3.9.1"
  10418. },
  10419. "require-dev": {
  10420. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  10421. },
  10422. "type": "library",
  10423. "autoload": {
  10424. "psr-4": {
  10425. "Webmozart\\Assert\\": "src/"
  10426. }
  10427. },
  10428. "notification-url": "https://packagist.org/downloads/",
  10429. "license": [
  10430. "MIT"
  10431. ],
  10432. "authors": [
  10433. {
  10434. "name": "Bernhard Schussek",
  10435. "email": "bschussek@gmail.com"
  10436. }
  10437. ],
  10438. "description": "Assertions to validate method input/output with nice error messages.",
  10439. "keywords": [
  10440. "assert",
  10441. "check",
  10442. "validate"
  10443. ],
  10444. "time": "2020-07-08T17:02:28+00:00"
  10445. }
  10446. ],
  10447. "aliases": [],
  10448. "minimum-stability": "dev",
  10449. "stability-flags": [],
  10450. "prefer-stable": true,
  10451. "prefer-lowest": false,
  10452. "platform": {
  10453. "php": "^7.2.5",
  10454. "ext-json": "*",
  10455. "ext-openssl": "*"
  10456. },
  10457. "platform-dev": [],
  10458. "plugin-api-version": "1.1.0"
  10459. }