composer.lock 372 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615
  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": "e2db37b70aa19f8085179e48a19780f1",
  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": "bacon/bacon-qr-code",
  63. "version": "2.0.0",
  64. "source": {
  65. "type": "git",
  66. "url": "https://github.com/Bacon/BaconQrCode.git",
  67. "reference": "eaac909da3ccc32b748a65b127acd8918f58d9b0"
  68. },
  69. "dist": {
  70. "type": "zip",
  71. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/eaac909da3ccc32b748a65b127acd8918f58d9b0",
  72. "reference": "eaac909da3ccc32b748a65b127acd8918f58d9b0",
  73. "shasum": ""
  74. },
  75. "require": {
  76. "dasprid/enum": "^1.0",
  77. "ext-iconv": "*",
  78. "php": "^7.1"
  79. },
  80. "require-dev": {
  81. "phly/keep-a-changelog": "^1.4",
  82. "phpunit/phpunit": "^6.4",
  83. "squizlabs/php_codesniffer": "^3.1"
  84. },
  85. "suggest": {
  86. "ext-imagick": "to generate QR code images"
  87. },
  88. "type": "library",
  89. "autoload": {
  90. "psr-4": {
  91. "BaconQrCode\\": "src/"
  92. }
  93. },
  94. "notification-url": "https://packagist.org/downloads/",
  95. "license": [
  96. "BSD-2-Clause"
  97. ],
  98. "authors": [
  99. {
  100. "name": "Ben Scholzen 'DASPRiD'",
  101. "email": "mail@dasprids.de",
  102. "homepage": "http://www.dasprids.de",
  103. "role": "Developer"
  104. }
  105. ],
  106. "description": "BaconQrCode is a QR code generator for PHP.",
  107. "homepage": "https://github.com/Bacon/BaconQrCode",
  108. "time": "2018-04-25T17:53:56+00:00"
  109. },
  110. {
  111. "name": "brick/math",
  112. "version": "0.9.1",
  113. "source": {
  114. "type": "git",
  115. "url": "https://github.com/brick/math.git",
  116. "reference": "283a40c901101e66de7061bd359252c013dcc43c"
  117. },
  118. "dist": {
  119. "type": "zip",
  120. "url": "https://api.github.com/repos/brick/math/zipball/283a40c901101e66de7061bd359252c013dcc43c",
  121. "reference": "283a40c901101e66de7061bd359252c013dcc43c",
  122. "shasum": ""
  123. },
  124. "require": {
  125. "ext-json": "*",
  126. "php": "^7.1|^8.0"
  127. },
  128. "require-dev": {
  129. "php-coveralls/php-coveralls": "^2.2",
  130. "phpunit/phpunit": "^7.5.15|^8.5",
  131. "vimeo/psalm": "^3.5"
  132. },
  133. "type": "library",
  134. "autoload": {
  135. "psr-4": {
  136. "Brick\\Math\\": "src/"
  137. }
  138. },
  139. "notification-url": "https://packagist.org/downloads/",
  140. "license": [
  141. "MIT"
  142. ],
  143. "description": "Arbitrary-precision arithmetic library",
  144. "keywords": [
  145. "Arbitrary-precision",
  146. "BigInteger",
  147. "BigRational",
  148. "arithmetic",
  149. "bigdecimal",
  150. "bignum",
  151. "brick",
  152. "math"
  153. ],
  154. "funding": [
  155. {
  156. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  157. "type": "tidelift"
  158. }
  159. ],
  160. "time": "2020-08-18T23:57:15+00:00"
  161. },
  162. {
  163. "name": "composer/ca-bundle",
  164. "version": "1.2.8",
  165. "source": {
  166. "type": "git",
  167. "url": "https://github.com/composer/ca-bundle.git",
  168. "reference": "8a7ecad675253e4654ea05505233285377405215"
  169. },
  170. "dist": {
  171. "type": "zip",
  172. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/8a7ecad675253e4654ea05505233285377405215",
  173. "reference": "8a7ecad675253e4654ea05505233285377405215",
  174. "shasum": ""
  175. },
  176. "require": {
  177. "ext-openssl": "*",
  178. "ext-pcre": "*",
  179. "php": "^5.3.2 || ^7.0 || ^8.0"
  180. },
  181. "require-dev": {
  182. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8",
  183. "psr/log": "^1.0",
  184. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0"
  185. },
  186. "type": "library",
  187. "extra": {
  188. "branch-alias": {
  189. "dev-master": "1.x-dev"
  190. }
  191. },
  192. "autoload": {
  193. "psr-4": {
  194. "Composer\\CaBundle\\": "src"
  195. }
  196. },
  197. "notification-url": "https://packagist.org/downloads/",
  198. "license": [
  199. "MIT"
  200. ],
  201. "authors": [
  202. {
  203. "name": "Jordi Boggiano",
  204. "email": "j.boggiano@seld.be",
  205. "homepage": "http://seld.be"
  206. }
  207. ],
  208. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  209. "keywords": [
  210. "cabundle",
  211. "cacert",
  212. "certificate",
  213. "ssl",
  214. "tls"
  215. ],
  216. "funding": [
  217. {
  218. "url": "https://packagist.com",
  219. "type": "custom"
  220. },
  221. {
  222. "url": "https://github.com/composer",
  223. "type": "github"
  224. },
  225. {
  226. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  227. "type": "tidelift"
  228. }
  229. ],
  230. "time": "2020-08-23T12:54:47+00:00"
  231. },
  232. {
  233. "name": "dasprid/enum",
  234. "version": "1.0.2",
  235. "source": {
  236. "type": "git",
  237. "url": "https://github.com/DASPRiD/Enum.git",
  238. "reference": "6ccc0d7141a7f149e3c56cb0ce5f05d9152cfd07"
  239. },
  240. "dist": {
  241. "type": "zip",
  242. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/6ccc0d7141a7f149e3c56cb0ce5f05d9152cfd07",
  243. "reference": "6ccc0d7141a7f149e3c56cb0ce5f05d9152cfd07",
  244. "shasum": ""
  245. },
  246. "require-dev": {
  247. "phpunit/phpunit": "^7 | ^8 | ^9",
  248. "squizlabs/php_codesniffer": "^3.4"
  249. },
  250. "type": "library",
  251. "autoload": {
  252. "psr-4": {
  253. "DASPRiD\\Enum\\": "src/"
  254. }
  255. },
  256. "notification-url": "https://packagist.org/downloads/",
  257. "license": [
  258. "BSD-2-Clause"
  259. ],
  260. "authors": [
  261. {
  262. "name": "Ben Scholzen 'DASPRiD'",
  263. "email": "mail@dasprids.de",
  264. "homepage": "https://dasprids.de/",
  265. "role": "Developer"
  266. }
  267. ],
  268. "description": "PHP 7.1 enum implementation",
  269. "keywords": [
  270. "enum",
  271. "map"
  272. ],
  273. "time": "2020-07-30T16:37:13+00:00"
  274. },
  275. {
  276. "name": "dnoegel/php-xdg-base-dir",
  277. "version": "v0.1.1",
  278. "source": {
  279. "type": "git",
  280. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  281. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  282. },
  283. "dist": {
  284. "type": "zip",
  285. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  286. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  287. "shasum": ""
  288. },
  289. "require": {
  290. "php": ">=5.3.2"
  291. },
  292. "require-dev": {
  293. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  294. },
  295. "type": "library",
  296. "autoload": {
  297. "psr-4": {
  298. "XdgBaseDir\\": "src/"
  299. }
  300. },
  301. "notification-url": "https://packagist.org/downloads/",
  302. "license": [
  303. "MIT"
  304. ],
  305. "description": "implementation of xdg base directory specification for php",
  306. "time": "2019-12-04T15:06:13+00:00"
  307. },
  308. {
  309. "name": "doctrine/inflector",
  310. "version": "2.0.3",
  311. "source": {
  312. "type": "git",
  313. "url": "https://github.com/doctrine/inflector.git",
  314. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  315. },
  316. "dist": {
  317. "type": "zip",
  318. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  319. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  320. "shasum": ""
  321. },
  322. "require": {
  323. "php": "^7.2 || ^8.0"
  324. },
  325. "require-dev": {
  326. "doctrine/coding-standard": "^7.0",
  327. "phpstan/phpstan": "^0.11",
  328. "phpstan/phpstan-phpunit": "^0.11",
  329. "phpstan/phpstan-strict-rules": "^0.11",
  330. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  331. },
  332. "type": "library",
  333. "extra": {
  334. "branch-alias": {
  335. "dev-master": "2.0.x-dev"
  336. }
  337. },
  338. "autoload": {
  339. "psr-4": {
  340. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  341. }
  342. },
  343. "notification-url": "https://packagist.org/downloads/",
  344. "license": [
  345. "MIT"
  346. ],
  347. "authors": [
  348. {
  349. "name": "Guilherme Blanco",
  350. "email": "guilhermeblanco@gmail.com"
  351. },
  352. {
  353. "name": "Roman Borschel",
  354. "email": "roman@code-factory.org"
  355. },
  356. {
  357. "name": "Benjamin Eberlei",
  358. "email": "kontakt@beberlei.de"
  359. },
  360. {
  361. "name": "Jonathan Wage",
  362. "email": "jonwage@gmail.com"
  363. },
  364. {
  365. "name": "Johannes Schmitt",
  366. "email": "schmittjoh@gmail.com"
  367. }
  368. ],
  369. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  370. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  371. "keywords": [
  372. "inflection",
  373. "inflector",
  374. "lowercase",
  375. "manipulation",
  376. "php",
  377. "plural",
  378. "singular",
  379. "strings",
  380. "uppercase",
  381. "words"
  382. ],
  383. "funding": [
  384. {
  385. "url": "https://www.doctrine-project.org/sponsorship.html",
  386. "type": "custom"
  387. },
  388. {
  389. "url": "https://www.patreon.com/phpdoctrine",
  390. "type": "patreon"
  391. },
  392. {
  393. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  394. "type": "tidelift"
  395. }
  396. ],
  397. "time": "2020-05-29T15:13:26+00:00"
  398. },
  399. {
  400. "name": "doctrine/lexer",
  401. "version": "1.2.1",
  402. "source": {
  403. "type": "git",
  404. "url": "https://github.com/doctrine/lexer.git",
  405. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  406. },
  407. "dist": {
  408. "type": "zip",
  409. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  410. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  411. "shasum": ""
  412. },
  413. "require": {
  414. "php": "^7.2 || ^8.0"
  415. },
  416. "require-dev": {
  417. "doctrine/coding-standard": "^6.0",
  418. "phpstan/phpstan": "^0.11.8",
  419. "phpunit/phpunit": "^8.2"
  420. },
  421. "type": "library",
  422. "extra": {
  423. "branch-alias": {
  424. "dev-master": "1.2.x-dev"
  425. }
  426. },
  427. "autoload": {
  428. "psr-4": {
  429. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  430. }
  431. },
  432. "notification-url": "https://packagist.org/downloads/",
  433. "license": [
  434. "MIT"
  435. ],
  436. "authors": [
  437. {
  438. "name": "Guilherme Blanco",
  439. "email": "guilhermeblanco@gmail.com"
  440. },
  441. {
  442. "name": "Roman Borschel",
  443. "email": "roman@code-factory.org"
  444. },
  445. {
  446. "name": "Johannes Schmitt",
  447. "email": "schmittjoh@gmail.com"
  448. }
  449. ],
  450. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  451. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  452. "keywords": [
  453. "annotations",
  454. "docblock",
  455. "lexer",
  456. "parser",
  457. "php"
  458. ],
  459. "funding": [
  460. {
  461. "url": "https://www.doctrine-project.org/sponsorship.html",
  462. "type": "custom"
  463. },
  464. {
  465. "url": "https://www.patreon.com/phpdoctrine",
  466. "type": "patreon"
  467. },
  468. {
  469. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  470. "type": "tidelift"
  471. }
  472. ],
  473. "time": "2020-05-25T17:44:05+00:00"
  474. },
  475. {
  476. "name": "dragonmantank/cron-expression",
  477. "version": "v2.3.0",
  478. "source": {
  479. "type": "git",
  480. "url": "https://github.com/dragonmantank/cron-expression.git",
  481. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27"
  482. },
  483. "dist": {
  484. "type": "zip",
  485. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  486. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  487. "shasum": ""
  488. },
  489. "require": {
  490. "php": "^7.0"
  491. },
  492. "require-dev": {
  493. "phpunit/phpunit": "^6.4|^7.0"
  494. },
  495. "type": "library",
  496. "extra": {
  497. "branch-alias": {
  498. "dev-master": "2.3-dev"
  499. }
  500. },
  501. "autoload": {
  502. "psr-4": {
  503. "Cron\\": "src/Cron/"
  504. }
  505. },
  506. "notification-url": "https://packagist.org/downloads/",
  507. "license": [
  508. "MIT"
  509. ],
  510. "authors": [
  511. {
  512. "name": "Michael Dowling",
  513. "email": "mtdowling@gmail.com",
  514. "homepage": "https://github.com/mtdowling"
  515. },
  516. {
  517. "name": "Chris Tankersley",
  518. "email": "chris@ctankersley.com",
  519. "homepage": "https://github.com/dragonmantank"
  520. }
  521. ],
  522. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  523. "keywords": [
  524. "cron",
  525. "schedule"
  526. ],
  527. "time": "2019-03-31T00:38:28+00:00"
  528. },
  529. {
  530. "name": "egulias/email-validator",
  531. "version": "2.1.22",
  532. "source": {
  533. "type": "git",
  534. "url": "https://github.com/egulias/EmailValidator.git",
  535. "reference": "68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5"
  536. },
  537. "dist": {
  538. "type": "zip",
  539. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5",
  540. "reference": "68e418ec08fbfc6f58f6fd2eea70ca8efc8cc7d5",
  541. "shasum": ""
  542. },
  543. "require": {
  544. "doctrine/lexer": "^1.0.1",
  545. "php": ">=5.5",
  546. "symfony/polyfill-intl-idn": "^1.10"
  547. },
  548. "require-dev": {
  549. "dominicsayers/isemail": "^3.0.7",
  550. "phpunit/phpunit": "^4.8.36|^7.5.15",
  551. "satooshi/php-coveralls": "^1.0.1"
  552. },
  553. "suggest": {
  554. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  555. },
  556. "type": "library",
  557. "extra": {
  558. "branch-alias": {
  559. "dev-master": "2.1.x-dev"
  560. }
  561. },
  562. "autoload": {
  563. "psr-4": {
  564. "Egulias\\EmailValidator\\": "src"
  565. }
  566. },
  567. "notification-url": "https://packagist.org/downloads/",
  568. "license": [
  569. "MIT"
  570. ],
  571. "authors": [
  572. {
  573. "name": "Eduardo Gulias Davis"
  574. }
  575. ],
  576. "description": "A library for validating emails against several RFCs",
  577. "homepage": "https://github.com/egulias/EmailValidator",
  578. "keywords": [
  579. "email",
  580. "emailvalidation",
  581. "emailvalidator",
  582. "validation",
  583. "validator"
  584. ],
  585. "time": "2020-09-26T15:48:38+00:00"
  586. },
  587. {
  588. "name": "ezyang/htmlpurifier",
  589. "version": "v4.13.0",
  590. "source": {
  591. "type": "git",
  592. "url": "https://github.com/ezyang/htmlpurifier.git",
  593. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  594. },
  595. "dist": {
  596. "type": "zip",
  597. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  598. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  599. "shasum": ""
  600. },
  601. "require": {
  602. "php": ">=5.2"
  603. },
  604. "require-dev": {
  605. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  606. },
  607. "type": "library",
  608. "autoload": {
  609. "psr-0": {
  610. "HTMLPurifier": "library/"
  611. },
  612. "files": [
  613. "library/HTMLPurifier.composer.php"
  614. ],
  615. "exclude-from-classmap": [
  616. "/library/HTMLPurifier/Language/"
  617. ]
  618. },
  619. "notification-url": "https://packagist.org/downloads/",
  620. "license": [
  621. "LGPL-2.1-or-later"
  622. ],
  623. "authors": [
  624. {
  625. "name": "Edward Z. Yang",
  626. "email": "admin@htmlpurifier.org",
  627. "homepage": "http://ezyang.com"
  628. }
  629. ],
  630. "description": "Standards compliant HTML filter written in PHP",
  631. "homepage": "http://htmlpurifier.org/",
  632. "keywords": [
  633. "html"
  634. ],
  635. "time": "2020-06-29T00:56:53+00:00"
  636. },
  637. {
  638. "name": "fideloper/proxy",
  639. "version": "4.4.0",
  640. "source": {
  641. "type": "git",
  642. "url": "https://github.com/fideloper/TrustedProxy.git",
  643. "reference": "9beebf48a1c344ed67c1d36bb1b8709db7c3c1a8"
  644. },
  645. "dist": {
  646. "type": "zip",
  647. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/9beebf48a1c344ed67c1d36bb1b8709db7c3c1a8",
  648. "reference": "9beebf48a1c344ed67c1d36bb1b8709db7c3c1a8",
  649. "shasum": ""
  650. },
  651. "require": {
  652. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0",
  653. "php": ">=5.4.0"
  654. },
  655. "require-dev": {
  656. "illuminate/http": "^5.0|^6.0|^7.0|^8.0",
  657. "mockery/mockery": "^1.0",
  658. "phpunit/phpunit": "^6.0"
  659. },
  660. "type": "library",
  661. "extra": {
  662. "laravel": {
  663. "providers": [
  664. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  665. ]
  666. }
  667. },
  668. "autoload": {
  669. "psr-4": {
  670. "Fideloper\\Proxy\\": "src/"
  671. }
  672. },
  673. "notification-url": "https://packagist.org/downloads/",
  674. "license": [
  675. "MIT"
  676. ],
  677. "authors": [
  678. {
  679. "name": "Chris Fidao",
  680. "email": "fideloper@gmail.com"
  681. }
  682. ],
  683. "description": "Set trusted proxies for Laravel",
  684. "keywords": [
  685. "load balancing",
  686. "proxy",
  687. "trusted proxy"
  688. ],
  689. "time": "2020-06-23T01:36:47+00:00"
  690. },
  691. {
  692. "name": "fruitcake/laravel-cors",
  693. "version": "v2.0.2",
  694. "source": {
  695. "type": "git",
  696. "url": "https://github.com/fruitcake/laravel-cors.git",
  697. "reference": "4b19bfc3bd422948af37a42a62fad7f49025894a"
  698. },
  699. "dist": {
  700. "type": "zip",
  701. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/4b19bfc3bd422948af37a42a62fad7f49025894a",
  702. "reference": "4b19bfc3bd422948af37a42a62fad7f49025894a",
  703. "shasum": ""
  704. },
  705. "require": {
  706. "asm89/stack-cors": "^2.0.1",
  707. "illuminate/contracts": "^6|^7|^8",
  708. "illuminate/support": "^6|^7|^8",
  709. "php": ">=7.2",
  710. "symfony/http-foundation": "^4|^5",
  711. "symfony/http-kernel": "^4.3.4|^5"
  712. },
  713. "require-dev": {
  714. "laravel/framework": "^6|^7|^8",
  715. "orchestra/testbench-dusk": "^4|^5|^6",
  716. "phpunit/phpunit": "^6|^7|^8",
  717. "squizlabs/php_codesniffer": "^3.5"
  718. },
  719. "type": "library",
  720. "extra": {
  721. "branch-alias": {
  722. "dev-master": "2.0-dev"
  723. },
  724. "laravel": {
  725. "providers": [
  726. "Fruitcake\\Cors\\CorsServiceProvider"
  727. ]
  728. }
  729. },
  730. "autoload": {
  731. "psr-4": {
  732. "Fruitcake\\Cors\\": "src/"
  733. }
  734. },
  735. "notification-url": "https://packagist.org/downloads/",
  736. "license": [
  737. "MIT"
  738. ],
  739. "authors": [
  740. {
  741. "name": "Fruitcake",
  742. "homepage": "https://fruitcake.nl"
  743. },
  744. {
  745. "name": "Barry vd. Heuvel",
  746. "email": "barryvdh@gmail.com"
  747. }
  748. ],
  749. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  750. "keywords": [
  751. "api",
  752. "cors",
  753. "crossdomain",
  754. "laravel"
  755. ],
  756. "funding": [
  757. {
  758. "url": "https://github.com/barryvdh",
  759. "type": "github"
  760. }
  761. ],
  762. "time": "2020-09-07T11:48:52+00:00"
  763. },
  764. {
  765. "name": "geoip2/geoip2",
  766. "version": "v2.10.0",
  767. "source": {
  768. "type": "git",
  769. "url": "https://github.com/maxmind/GeoIP2-php.git",
  770. "reference": "419557cd21d9fe039721a83490701a58c8ce784a"
  771. },
  772. "dist": {
  773. "type": "zip",
  774. "url": "https://api.github.com/repos/maxmind/GeoIP2-php/zipball/419557cd21d9fe039721a83490701a58c8ce784a",
  775. "reference": "419557cd21d9fe039721a83490701a58c8ce784a",
  776. "shasum": ""
  777. },
  778. "require": {
  779. "ext-json": "*",
  780. "maxmind-db/reader": "~1.5",
  781. "maxmind/web-service-common": "~0.6",
  782. "php": ">=5.6"
  783. },
  784. "require-dev": {
  785. "friendsofphp/php-cs-fixer": "2.*",
  786. "phpunit/phpunit": "5.*",
  787. "squizlabs/php_codesniffer": "3.*"
  788. },
  789. "type": "library",
  790. "autoload": {
  791. "psr-4": {
  792. "GeoIp2\\": "src"
  793. }
  794. },
  795. "notification-url": "https://packagist.org/downloads/",
  796. "license": [
  797. "Apache-2.0"
  798. ],
  799. "authors": [
  800. {
  801. "name": "Gregory J. Oschwald",
  802. "email": "goschwald@maxmind.com",
  803. "homepage": "https://www.maxmind.com/"
  804. }
  805. ],
  806. "description": "MaxMind GeoIP2 PHP API",
  807. "homepage": "https://github.com/maxmind/GeoIP2-php",
  808. "keywords": [
  809. "IP",
  810. "geoip",
  811. "geoip2",
  812. "geolocation",
  813. "maxmind"
  814. ],
  815. "time": "2019-12-12T18:48:39+00:00"
  816. },
  817. {
  818. "name": "guzzlehttp/guzzle",
  819. "version": "6.5.5",
  820. "source": {
  821. "type": "git",
  822. "url": "https://github.com/guzzle/guzzle.git",
  823. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  824. },
  825. "dist": {
  826. "type": "zip",
  827. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  828. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  829. "shasum": ""
  830. },
  831. "require": {
  832. "ext-json": "*",
  833. "guzzlehttp/promises": "^1.0",
  834. "guzzlehttp/psr7": "^1.6.1",
  835. "php": ">=5.5",
  836. "symfony/polyfill-intl-idn": "^1.17.0"
  837. },
  838. "require-dev": {
  839. "ext-curl": "*",
  840. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  841. "psr/log": "^1.1"
  842. },
  843. "suggest": {
  844. "psr/log": "Required for using the Log middleware"
  845. },
  846. "type": "library",
  847. "extra": {
  848. "branch-alias": {
  849. "dev-master": "6.5-dev"
  850. }
  851. },
  852. "autoload": {
  853. "psr-4": {
  854. "GuzzleHttp\\": "src/"
  855. },
  856. "files": [
  857. "src/functions_include.php"
  858. ]
  859. },
  860. "notification-url": "https://packagist.org/downloads/",
  861. "license": [
  862. "MIT"
  863. ],
  864. "authors": [
  865. {
  866. "name": "Michael Dowling",
  867. "email": "mtdowling@gmail.com",
  868. "homepage": "https://github.com/mtdowling"
  869. }
  870. ],
  871. "description": "Guzzle is a PHP HTTP client library",
  872. "homepage": "http://guzzlephp.org/",
  873. "keywords": [
  874. "client",
  875. "curl",
  876. "framework",
  877. "http",
  878. "http client",
  879. "rest",
  880. "web service"
  881. ],
  882. "time": "2020-06-16T21:01:06+00:00"
  883. },
  884. {
  885. "name": "guzzlehttp/promises",
  886. "version": "1.4.0",
  887. "source": {
  888. "type": "git",
  889. "url": "https://github.com/guzzle/promises.git",
  890. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  891. },
  892. "dist": {
  893. "type": "zip",
  894. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  895. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  896. "shasum": ""
  897. },
  898. "require": {
  899. "php": ">=5.5"
  900. },
  901. "require-dev": {
  902. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  903. },
  904. "type": "library",
  905. "extra": {
  906. "branch-alias": {
  907. "dev-master": "1.4-dev"
  908. }
  909. },
  910. "autoload": {
  911. "psr-4": {
  912. "GuzzleHttp\\Promise\\": "src/"
  913. },
  914. "files": [
  915. "src/functions_include.php"
  916. ]
  917. },
  918. "notification-url": "https://packagist.org/downloads/",
  919. "license": [
  920. "MIT"
  921. ],
  922. "authors": [
  923. {
  924. "name": "Michael Dowling",
  925. "email": "mtdowling@gmail.com",
  926. "homepage": "https://github.com/mtdowling"
  927. }
  928. ],
  929. "description": "Guzzle promises library",
  930. "keywords": [
  931. "promise"
  932. ],
  933. "time": "2020-09-30T07:37:28+00:00"
  934. },
  935. {
  936. "name": "guzzlehttp/psr7",
  937. "version": "1.7.0",
  938. "source": {
  939. "type": "git",
  940. "url": "https://github.com/guzzle/psr7.git",
  941. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  942. },
  943. "dist": {
  944. "type": "zip",
  945. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  946. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  947. "shasum": ""
  948. },
  949. "require": {
  950. "php": ">=5.4.0",
  951. "psr/http-message": "~1.0",
  952. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  953. },
  954. "provide": {
  955. "psr/http-message-implementation": "1.0"
  956. },
  957. "require-dev": {
  958. "ext-zlib": "*",
  959. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  960. },
  961. "suggest": {
  962. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  963. },
  964. "type": "library",
  965. "extra": {
  966. "branch-alias": {
  967. "dev-master": "1.7-dev"
  968. }
  969. },
  970. "autoload": {
  971. "psr-4": {
  972. "GuzzleHttp\\Psr7\\": "src/"
  973. },
  974. "files": [
  975. "src/functions_include.php"
  976. ]
  977. },
  978. "notification-url": "https://packagist.org/downloads/",
  979. "license": [
  980. "MIT"
  981. ],
  982. "authors": [
  983. {
  984. "name": "Michael Dowling",
  985. "email": "mtdowling@gmail.com",
  986. "homepage": "https://github.com/mtdowling"
  987. },
  988. {
  989. "name": "Tobias Schultze",
  990. "homepage": "https://github.com/Tobion"
  991. }
  992. ],
  993. "description": "PSR-7 message implementation that also provides common utility methods",
  994. "keywords": [
  995. "http",
  996. "message",
  997. "psr-7",
  998. "request",
  999. "response",
  1000. "stream",
  1001. "uri",
  1002. "url"
  1003. ],
  1004. "time": "2020-09-30T07:37:11+00:00"
  1005. },
  1006. {
  1007. "name": "intervention/image",
  1008. "version": "2.5.1",
  1009. "source": {
  1010. "type": "git",
  1011. "url": "https://github.com/Intervention/image.git",
  1012. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
  1013. },
  1014. "dist": {
  1015. "type": "zip",
  1016. "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1017. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1018. "shasum": ""
  1019. },
  1020. "require": {
  1021. "ext-fileinfo": "*",
  1022. "guzzlehttp/psr7": "~1.1",
  1023. "php": ">=5.4.0"
  1024. },
  1025. "require-dev": {
  1026. "mockery/mockery": "~0.9.2",
  1027. "phpunit/phpunit": "^4.8 || ^5.7"
  1028. },
  1029. "suggest": {
  1030. "ext-gd": "to use GD library based image processing.",
  1031. "ext-imagick": "to use Imagick based image processing.",
  1032. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1033. },
  1034. "type": "library",
  1035. "extra": {
  1036. "branch-alias": {
  1037. "dev-master": "2.4-dev"
  1038. },
  1039. "laravel": {
  1040. "providers": [
  1041. "Intervention\\Image\\ImageServiceProvider"
  1042. ],
  1043. "aliases": {
  1044. "Image": "Intervention\\Image\\Facades\\Image"
  1045. }
  1046. }
  1047. },
  1048. "autoload": {
  1049. "psr-4": {
  1050. "Intervention\\Image\\": "src/Intervention/Image"
  1051. }
  1052. },
  1053. "notification-url": "https://packagist.org/downloads/",
  1054. "license": [
  1055. "MIT"
  1056. ],
  1057. "authors": [
  1058. {
  1059. "name": "Oliver Vogel",
  1060. "email": "oliver@olivervogel.com",
  1061. "homepage": "http://olivervogel.com/"
  1062. }
  1063. ],
  1064. "description": "Image handling and manipulation library with support for Laravel integration",
  1065. "homepage": "http://image.intervention.io/",
  1066. "keywords": [
  1067. "gd",
  1068. "image",
  1069. "imagick",
  1070. "laravel",
  1071. "thumbnail",
  1072. "watermark"
  1073. ],
  1074. "time": "2019-11-02T09:15:47+00:00"
  1075. },
  1076. {
  1077. "name": "ip2location/ip2location-laravel",
  1078. "version": "1.2.0",
  1079. "source": {
  1080. "type": "git",
  1081. "url": "https://github.com/ip2location/ip2location-laravel.git",
  1082. "reference": "56b0da66e12982ef6db0e2fe3b231659c5e76a9b"
  1083. },
  1084. "dist": {
  1085. "type": "zip",
  1086. "url": "https://api.github.com/repos/ip2location/ip2location-laravel/zipball/56b0da66e12982ef6db0e2fe3b231659c5e76a9b",
  1087. "reference": "56b0da66e12982ef6db0e2fe3b231659c5e76a9b",
  1088. "shasum": ""
  1089. },
  1090. "require": {
  1091. "ip2location/ip2location-php": "8.*",
  1092. "php": ">=5.4"
  1093. },
  1094. "type": "library",
  1095. "autoload": {
  1096. "psr-4": {
  1097. "Ip2location\\IP2LocationLaravel\\": "src/"
  1098. }
  1099. },
  1100. "notification-url": "https://packagist.org/downloads/",
  1101. "license": [
  1102. "MIT"
  1103. ],
  1104. "authors": [
  1105. {
  1106. "name": "IP2Location",
  1107. "email": "support@ip2location.com"
  1108. }
  1109. ],
  1110. "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.",
  1111. "keywords": [
  1112. "geolocation",
  1113. "ip2location",
  1114. "laravel",
  1115. "laravel 5",
  1116. "laravel 7"
  1117. ],
  1118. "time": "2020-08-27T07:47:55+00:00"
  1119. },
  1120. {
  1121. "name": "ip2location/ip2location-php",
  1122. "version": "8.2.3",
  1123. "source": {
  1124. "type": "git",
  1125. "url": "https://github.com/chrislim2888/IP2Location-PHP-Module.git",
  1126. "reference": "532749399c73b664ca8b24770b40b6c479131870"
  1127. },
  1128. "dist": {
  1129. "type": "zip",
  1130. "url": "https://api.github.com/repos/chrislim2888/IP2Location-PHP-Module/zipball/532749399c73b664ca8b24770b40b6c479131870",
  1131. "reference": "532749399c73b664ca8b24770b40b6c479131870",
  1132. "shasum": ""
  1133. },
  1134. "type": "library",
  1135. "autoload": {
  1136. "classmap": [
  1137. "IP2Location.php"
  1138. ]
  1139. },
  1140. "notification-url": "https://packagist.org/downloads/",
  1141. "license": [
  1142. "MIT"
  1143. ],
  1144. "authors": [
  1145. {
  1146. "name": "IP2Location",
  1147. "email": "support@ip2location.com",
  1148. "homepage": "http://www.ip2location.com"
  1149. }
  1150. ],
  1151. "description": "[Official Release] IP2Location PHP API to get location info from IPv4 and IPv6 address.",
  1152. "homepage": "http://www.ip2location.com",
  1153. "keywords": [
  1154. "geolocation",
  1155. "ip2location",
  1156. "ip2locationlite"
  1157. ],
  1158. "time": "2020-09-23T23:04:28+00:00"
  1159. },
  1160. {
  1161. "name": "ipip/db",
  1162. "version": "v1.0.0",
  1163. "source": {
  1164. "type": "git",
  1165. "url": "https://github.com/ipipdotnet/ipdb-php.git",
  1166. "reference": "af42bf28b37dc76beccd7bbe2b0b0572e21f42cf"
  1167. },
  1168. "dist": {
  1169. "type": "zip",
  1170. "url": "https://api.github.com/repos/ipipdotnet/ipdb-php/zipball/af42bf28b37dc76beccd7bbe2b0b0572e21f42cf",
  1171. "reference": "af42bf28b37dc76beccd7bbe2b0b0572e21f42cf",
  1172. "shasum": ""
  1173. },
  1174. "require": {
  1175. "php": ">=5.4.0"
  1176. },
  1177. "type": "library",
  1178. "autoload": {
  1179. "psr-4": {
  1180. "ipip\\db\\": "src/ipip/db/"
  1181. }
  1182. },
  1183. "notification-url": "https://packagist.org/downloads/",
  1184. "license": [
  1185. "Apache-2.0"
  1186. ],
  1187. "authors": [
  1188. {
  1189. "name": "IPIP.net",
  1190. "email": "frk@ipip.net",
  1191. "homepage": "https://www.ipip.net"
  1192. }
  1193. ],
  1194. "description": "IPIP.net officially supported IP database ipdb format parsing library",
  1195. "homepage": "https://www.ipip.net",
  1196. "keywords": [
  1197. "IP",
  1198. "geo",
  1199. "geoip",
  1200. "geolocation",
  1201. "ipdb",
  1202. "ipip.net"
  1203. ],
  1204. "time": "2018-11-01T08:07:04+00:00"
  1205. },
  1206. {
  1207. "name": "jaybizzle/crawler-detect",
  1208. "version": "v1.2.99",
  1209. "source": {
  1210. "type": "git",
  1211. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  1212. "reference": "0ffea34489b258a2709bfe93a9553e1efa5d1904"
  1213. },
  1214. "dist": {
  1215. "type": "zip",
  1216. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/0ffea34489b258a2709bfe93a9553e1efa5d1904",
  1217. "reference": "0ffea34489b258a2709bfe93a9553e1efa5d1904",
  1218. "shasum": ""
  1219. },
  1220. "require": {
  1221. "php": ">=5.3.0"
  1222. },
  1223. "require-dev": {
  1224. "phpunit/phpunit": "^4.8|^5.5|^6.5",
  1225. "satooshi/php-coveralls": "1.*"
  1226. },
  1227. "type": "library",
  1228. "autoload": {
  1229. "psr-4": {
  1230. "Jaybizzle\\CrawlerDetect\\": "src/"
  1231. }
  1232. },
  1233. "notification-url": "https://packagist.org/downloads/",
  1234. "license": [
  1235. "MIT"
  1236. ],
  1237. "authors": [
  1238. {
  1239. "name": "Mark Beech",
  1240. "email": "m@rkbee.ch",
  1241. "role": "Developer"
  1242. }
  1243. ],
  1244. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  1245. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  1246. "keywords": [
  1247. "crawler",
  1248. "crawler detect",
  1249. "crawler detector",
  1250. "crawlerdetect",
  1251. "php crawler detect"
  1252. ],
  1253. "time": "2020-08-25T21:35:55+00:00"
  1254. },
  1255. {
  1256. "name": "jenssegers/agent",
  1257. "version": "v2.6.4",
  1258. "source": {
  1259. "type": "git",
  1260. "url": "https://github.com/jenssegers/agent.git",
  1261. "reference": "daa11c43729510b3700bc34d414664966b03bffe"
  1262. },
  1263. "dist": {
  1264. "type": "zip",
  1265. "url": "https://api.github.com/repos/jenssegers/agent/zipball/daa11c43729510b3700bc34d414664966b03bffe",
  1266. "reference": "daa11c43729510b3700bc34d414664966b03bffe",
  1267. "shasum": ""
  1268. },
  1269. "require": {
  1270. "jaybizzle/crawler-detect": "^1.2",
  1271. "mobiledetect/mobiledetectlib": "^2.7.6",
  1272. "php": ">=5.6"
  1273. },
  1274. "require-dev": {
  1275. "php-coveralls/php-coveralls": "^2.1",
  1276. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  1277. },
  1278. "suggest": {
  1279. "illuminate/support": "Required for laravel service providers"
  1280. },
  1281. "type": "library",
  1282. "extra": {
  1283. "branch-alias": {
  1284. "dev-master": "3.0-dev"
  1285. },
  1286. "laravel": {
  1287. "providers": [
  1288. "Jenssegers\\Agent\\AgentServiceProvider"
  1289. ],
  1290. "aliases": {
  1291. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  1292. }
  1293. }
  1294. },
  1295. "autoload": {
  1296. "psr-4": {
  1297. "Jenssegers\\Agent\\": "src/"
  1298. }
  1299. },
  1300. "notification-url": "https://packagist.org/downloads/",
  1301. "license": [
  1302. "MIT"
  1303. ],
  1304. "authors": [
  1305. {
  1306. "name": "Jens Segers",
  1307. "homepage": "https://jenssegers.com"
  1308. }
  1309. ],
  1310. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  1311. "homepage": "https://github.com/jenssegers/agent",
  1312. "keywords": [
  1313. "Agent",
  1314. "browser",
  1315. "desktop",
  1316. "laravel",
  1317. "mobile",
  1318. "platform",
  1319. "user agent",
  1320. "useragent"
  1321. ],
  1322. "funding": [
  1323. {
  1324. "url": "https://github.com/jenssegers",
  1325. "type": "github"
  1326. },
  1327. {
  1328. "url": "https://tidelift.com/funding/github/packagist/jenssegers/agent",
  1329. "type": "tidelift"
  1330. }
  1331. ],
  1332. "time": "2020-06-13T08:05:20+00:00"
  1333. },
  1334. {
  1335. "name": "laravel-lang/lang",
  1336. "version": "7.0.6",
  1337. "source": {
  1338. "type": "git",
  1339. "url": "https://github.com/Laravel-Lang/lang.git",
  1340. "reference": "bb0045f740dd7ac26ba97a3483b024e8c5cfdca1"
  1341. },
  1342. "dist": {
  1343. "type": "zip",
  1344. "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/bb0045f740dd7ac26ba97a3483b024e8c5cfdca1",
  1345. "reference": "bb0045f740dd7ac26ba97a3483b024e8c5cfdca1",
  1346. "shasum": ""
  1347. },
  1348. "require": {
  1349. "ext-json": "*"
  1350. },
  1351. "suggest": {
  1352. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  1353. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  1354. "overtrue/laravel-lang": "Command to add languages in your project"
  1355. },
  1356. "type": "library",
  1357. "notification-url": "https://packagist.org/downloads/",
  1358. "license": [
  1359. "MIT"
  1360. ],
  1361. "authors": [
  1362. {
  1363. "name": "Laravel-Lang Team"
  1364. }
  1365. ],
  1366. "description": "Languages for Laravel",
  1367. "keywords": [
  1368. "lang",
  1369. "languages",
  1370. "laravel",
  1371. "lpm"
  1372. ],
  1373. "time": "2020-09-30T18:39:01+00:00"
  1374. },
  1375. {
  1376. "name": "laravel/framework",
  1377. "version": "v7.28.3",
  1378. "source": {
  1379. "type": "git",
  1380. "url": "https://github.com/laravel/framework.git",
  1381. "reference": "b0942c391975972b1a54b2dc983e33a239f169a9"
  1382. },
  1383. "dist": {
  1384. "type": "zip",
  1385. "url": "https://api.github.com/repos/laravel/framework/zipball/b0942c391975972b1a54b2dc983e33a239f169a9",
  1386. "reference": "b0942c391975972b1a54b2dc983e33a239f169a9",
  1387. "shasum": ""
  1388. },
  1389. "require": {
  1390. "doctrine/inflector": "^1.4|^2.0",
  1391. "dragonmantank/cron-expression": "^2.0",
  1392. "egulias/email-validator": "^2.1.10",
  1393. "ext-json": "*",
  1394. "ext-mbstring": "*",
  1395. "ext-openssl": "*",
  1396. "league/commonmark": "^1.3",
  1397. "league/flysystem": "^1.0.34",
  1398. "monolog/monolog": "^2.0",
  1399. "nesbot/carbon": "^2.17",
  1400. "opis/closure": "^3.1",
  1401. "php": "^7.2.5",
  1402. "psr/container": "^1.0",
  1403. "psr/simple-cache": "^1.0",
  1404. "ramsey/uuid": "^3.7|^4.0",
  1405. "swiftmailer/swiftmailer": "^6.0",
  1406. "symfony/console": "^5.0",
  1407. "symfony/error-handler": "^5.0",
  1408. "symfony/finder": "^5.0",
  1409. "symfony/http-foundation": "^5.0",
  1410. "symfony/http-kernel": "^5.0",
  1411. "symfony/mime": "^5.0",
  1412. "symfony/polyfill-php73": "^1.17",
  1413. "symfony/process": "^5.0",
  1414. "symfony/routing": "^5.0",
  1415. "symfony/var-dumper": "^5.0",
  1416. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1417. "vlucas/phpdotenv": "^4.0",
  1418. "voku/portable-ascii": "^1.4.8"
  1419. },
  1420. "conflict": {
  1421. "tightenco/collect": "<5.5.33"
  1422. },
  1423. "provide": {
  1424. "psr/container-implementation": "1.0"
  1425. },
  1426. "replace": {
  1427. "illuminate/auth": "self.version",
  1428. "illuminate/broadcasting": "self.version",
  1429. "illuminate/bus": "self.version",
  1430. "illuminate/cache": "self.version",
  1431. "illuminate/config": "self.version",
  1432. "illuminate/console": "self.version",
  1433. "illuminate/container": "self.version",
  1434. "illuminate/contracts": "self.version",
  1435. "illuminate/cookie": "self.version",
  1436. "illuminate/database": "self.version",
  1437. "illuminate/encryption": "self.version",
  1438. "illuminate/events": "self.version",
  1439. "illuminate/filesystem": "self.version",
  1440. "illuminate/hashing": "self.version",
  1441. "illuminate/http": "self.version",
  1442. "illuminate/log": "self.version",
  1443. "illuminate/mail": "self.version",
  1444. "illuminate/notifications": "self.version",
  1445. "illuminate/pagination": "self.version",
  1446. "illuminate/pipeline": "self.version",
  1447. "illuminate/queue": "self.version",
  1448. "illuminate/redis": "self.version",
  1449. "illuminate/routing": "self.version",
  1450. "illuminate/session": "self.version",
  1451. "illuminate/support": "self.version",
  1452. "illuminate/testing": "self.version",
  1453. "illuminate/translation": "self.version",
  1454. "illuminate/validation": "self.version",
  1455. "illuminate/view": "self.version"
  1456. },
  1457. "require-dev": {
  1458. "aws/aws-sdk-php": "^3.0",
  1459. "doctrine/dbal": "^2.6",
  1460. "filp/whoops": "^2.4",
  1461. "guzzlehttp/guzzle": "^6.3.1|^7.0",
  1462. "league/flysystem-cached-adapter": "^1.0",
  1463. "mockery/mockery": "^1.3.1",
  1464. "moontoast/math": "^1.1",
  1465. "orchestra/testbench-core": "^5.0",
  1466. "pda/pheanstalk": "^4.0",
  1467. "phpunit/phpunit": "^8.4|^9.0",
  1468. "predis/predis": "^1.1.1",
  1469. "symfony/cache": "^5.0"
  1470. },
  1471. "suggest": {
  1472. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.0).",
  1473. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  1474. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1475. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1476. "ext-memcached": "Required to use the memcache cache driver.",
  1477. "ext-pcntl": "Required to use all features of the queue worker.",
  1478. "ext-posix": "Required to use all features of the queue worker.",
  1479. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1480. "filp/whoops": "Required for friendly error pages in development (^2.4).",
  1481. "fzaninotto/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1482. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0).",
  1483. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1484. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1485. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1486. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1487. "mockery/mockery": "Required to use mocking (^1.3.1).",
  1488. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  1489. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1490. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1491. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.0).",
  1492. "predis/predis": "Required to use the predis connector (^1.1.2).",
  1493. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1494. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  1495. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  1496. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  1497. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1498. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1499. },
  1500. "type": "library",
  1501. "extra": {
  1502. "branch-alias": {
  1503. "dev-master": "7.x-dev"
  1504. }
  1505. },
  1506. "autoload": {
  1507. "files": [
  1508. "src/Illuminate/Foundation/helpers.php",
  1509. "src/Illuminate/Support/helpers.php"
  1510. ],
  1511. "psr-4": {
  1512. "Illuminate\\": "src/Illuminate/"
  1513. }
  1514. },
  1515. "notification-url": "https://packagist.org/downloads/",
  1516. "license": [
  1517. "MIT"
  1518. ],
  1519. "authors": [
  1520. {
  1521. "name": "Taylor Otwell",
  1522. "email": "taylor@laravel.com"
  1523. }
  1524. ],
  1525. "description": "The Laravel Framework.",
  1526. "homepage": "https://laravel.com",
  1527. "keywords": [
  1528. "framework",
  1529. "laravel"
  1530. ],
  1531. "time": "2020-09-17T14:23:26+00:00"
  1532. },
  1533. {
  1534. "name": "laravel/tinker",
  1535. "version": "v2.4.2",
  1536. "source": {
  1537. "type": "git",
  1538. "url": "https://github.com/laravel/tinker.git",
  1539. "reference": "58424c24e8aec31c3a3ac54eb3adb15e8a0a067b"
  1540. },
  1541. "dist": {
  1542. "type": "zip",
  1543. "url": "https://api.github.com/repos/laravel/tinker/zipball/58424c24e8aec31c3a3ac54eb3adb15e8a0a067b",
  1544. "reference": "58424c24e8aec31c3a3ac54eb3adb15e8a0a067b",
  1545. "shasum": ""
  1546. },
  1547. "require": {
  1548. "illuminate/console": "^6.0|^7.0|^8.0",
  1549. "illuminate/contracts": "^6.0|^7.0|^8.0",
  1550. "illuminate/support": "^6.0|^7.0|^8.0",
  1551. "php": "^7.2",
  1552. "psy/psysh": "^0.10.3",
  1553. "symfony/var-dumper": "^4.3|^5.0"
  1554. },
  1555. "require-dev": {
  1556. "mockery/mockery": "^1.3.1",
  1557. "phpunit/phpunit": "^8.4|^9.0"
  1558. },
  1559. "suggest": {
  1560. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  1561. },
  1562. "type": "library",
  1563. "extra": {
  1564. "branch-alias": {
  1565. "dev-master": "2.x-dev"
  1566. },
  1567. "laravel": {
  1568. "providers": [
  1569. "Laravel\\Tinker\\TinkerServiceProvider"
  1570. ]
  1571. }
  1572. },
  1573. "autoload": {
  1574. "psr-4": {
  1575. "Laravel\\Tinker\\": "src/"
  1576. }
  1577. },
  1578. "notification-url": "https://packagist.org/downloads/",
  1579. "license": [
  1580. "MIT"
  1581. ],
  1582. "authors": [
  1583. {
  1584. "name": "Taylor Otwell",
  1585. "email": "taylor@laravel.com"
  1586. }
  1587. ],
  1588. "description": "Powerful REPL for the Laravel framework.",
  1589. "keywords": [
  1590. "REPL",
  1591. "Tinker",
  1592. "laravel",
  1593. "psysh"
  1594. ],
  1595. "time": "2020-08-11T19:28:08+00:00"
  1596. },
  1597. {
  1598. "name": "league/commonmark",
  1599. "version": "1.5.5",
  1600. "source": {
  1601. "type": "git",
  1602. "url": "https://github.com/thephpleague/commonmark.git",
  1603. "reference": "45832dfed6007b984c0d40addfac48d403dc6432"
  1604. },
  1605. "dist": {
  1606. "type": "zip",
  1607. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/45832dfed6007b984c0d40addfac48d403dc6432",
  1608. "reference": "45832dfed6007b984c0d40addfac48d403dc6432",
  1609. "shasum": ""
  1610. },
  1611. "require": {
  1612. "ext-mbstring": "*",
  1613. "php": "^7.1 || ^8.0"
  1614. },
  1615. "conflict": {
  1616. "scrutinizer/ocular": "1.7.*"
  1617. },
  1618. "require-dev": {
  1619. "cebe/markdown": "~1.0",
  1620. "commonmark/commonmark.js": "0.29.2",
  1621. "erusev/parsedown": "~1.0",
  1622. "ext-json": "*",
  1623. "github/gfm": "0.29.0",
  1624. "michelf/php-markdown": "~1.4",
  1625. "mikehaertl/php-shellcommand": "^1.4",
  1626. "phpstan/phpstan": "^0.12",
  1627. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  1628. "scrutinizer/ocular": "^1.5",
  1629. "symfony/finder": "^4.2"
  1630. },
  1631. "bin": [
  1632. "bin/commonmark"
  1633. ],
  1634. "type": "library",
  1635. "autoload": {
  1636. "psr-4": {
  1637. "League\\CommonMark\\": "src"
  1638. }
  1639. },
  1640. "notification-url": "https://packagist.org/downloads/",
  1641. "license": [
  1642. "BSD-3-Clause"
  1643. ],
  1644. "authors": [
  1645. {
  1646. "name": "Colin O'Dell",
  1647. "email": "colinodell@gmail.com",
  1648. "homepage": "https://www.colinodell.com",
  1649. "role": "Lead Developer"
  1650. }
  1651. ],
  1652. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  1653. "homepage": "https://commonmark.thephpleague.com",
  1654. "keywords": [
  1655. "commonmark",
  1656. "flavored",
  1657. "gfm",
  1658. "github",
  1659. "github-flavored",
  1660. "markdown",
  1661. "md",
  1662. "parser"
  1663. ],
  1664. "funding": [
  1665. {
  1666. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  1667. "type": "custom"
  1668. },
  1669. {
  1670. "url": "https://www.colinodell.com/sponsor",
  1671. "type": "custom"
  1672. },
  1673. {
  1674. "url": "https://www.paypal.me/colinpodell/10.00",
  1675. "type": "custom"
  1676. },
  1677. {
  1678. "url": "https://github.com/colinodell",
  1679. "type": "github"
  1680. },
  1681. {
  1682. "url": "https://www.patreon.com/colinodell",
  1683. "type": "patreon"
  1684. },
  1685. {
  1686. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1687. "type": "tidelift"
  1688. }
  1689. ],
  1690. "time": "2020-09-13T14:44:46+00:00"
  1691. },
  1692. {
  1693. "name": "league/flysystem",
  1694. "version": "1.1.3",
  1695. "source": {
  1696. "type": "git",
  1697. "url": "https://github.com/thephpleague/flysystem.git",
  1698. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  1699. },
  1700. "dist": {
  1701. "type": "zip",
  1702. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  1703. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  1704. "shasum": ""
  1705. },
  1706. "require": {
  1707. "ext-fileinfo": "*",
  1708. "league/mime-type-detection": "^1.3",
  1709. "php": "^7.2.5 || ^8.0"
  1710. },
  1711. "conflict": {
  1712. "league/flysystem-sftp": "<1.0.6"
  1713. },
  1714. "require-dev": {
  1715. "phpspec/prophecy": "^1.11.1",
  1716. "phpunit/phpunit": "^8.5.8"
  1717. },
  1718. "suggest": {
  1719. "ext-fileinfo": "Required for MimeType",
  1720. "ext-ftp": "Allows you to use FTP server storage",
  1721. "ext-openssl": "Allows you to use FTPS server storage",
  1722. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1723. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1724. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1725. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1726. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1727. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1728. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1729. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1730. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1731. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1732. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1733. },
  1734. "type": "library",
  1735. "extra": {
  1736. "branch-alias": {
  1737. "dev-master": "1.1-dev"
  1738. }
  1739. },
  1740. "autoload": {
  1741. "psr-4": {
  1742. "League\\Flysystem\\": "src/"
  1743. }
  1744. },
  1745. "notification-url": "https://packagist.org/downloads/",
  1746. "license": [
  1747. "MIT"
  1748. ],
  1749. "authors": [
  1750. {
  1751. "name": "Frank de Jonge",
  1752. "email": "info@frenky.net"
  1753. }
  1754. ],
  1755. "description": "Filesystem abstraction: Many filesystems, one API.",
  1756. "keywords": [
  1757. "Cloud Files",
  1758. "WebDAV",
  1759. "abstraction",
  1760. "aws",
  1761. "cloud",
  1762. "copy.com",
  1763. "dropbox",
  1764. "file systems",
  1765. "files",
  1766. "filesystem",
  1767. "filesystems",
  1768. "ftp",
  1769. "rackspace",
  1770. "remote",
  1771. "s3",
  1772. "sftp",
  1773. "storage"
  1774. ],
  1775. "funding": [
  1776. {
  1777. "url": "https://offset.earth/frankdejonge",
  1778. "type": "other"
  1779. }
  1780. ],
  1781. "time": "2020-08-23T07:39:11+00:00"
  1782. },
  1783. {
  1784. "name": "league/mime-type-detection",
  1785. "version": "1.5.0",
  1786. "source": {
  1787. "type": "git",
  1788. "url": "https://github.com/thephpleague/mime-type-detection.git",
  1789. "reference": "ea2fbfc988bade315acd5967e6d02274086d0f28"
  1790. },
  1791. "dist": {
  1792. "type": "zip",
  1793. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ea2fbfc988bade315acd5967e6d02274086d0f28",
  1794. "reference": "ea2fbfc988bade315acd5967e6d02274086d0f28",
  1795. "shasum": ""
  1796. },
  1797. "require": {
  1798. "ext-fileinfo": "*",
  1799. "php": "^7.2 || ^8.0"
  1800. },
  1801. "require-dev": {
  1802. "phpstan/phpstan": "^0.12.36",
  1803. "phpunit/phpunit": "^8.5.8"
  1804. },
  1805. "type": "library",
  1806. "autoload": {
  1807. "psr-4": {
  1808. "League\\MimeTypeDetection\\": "src"
  1809. }
  1810. },
  1811. "notification-url": "https://packagist.org/downloads/",
  1812. "license": [
  1813. "MIT"
  1814. ],
  1815. "authors": [
  1816. {
  1817. "name": "Frank de Jonge",
  1818. "email": "info@frankdejonge.nl"
  1819. }
  1820. ],
  1821. "description": "Mime-type detection for Flysystem",
  1822. "funding": [
  1823. {
  1824. "url": "https://github.com/frankdejonge",
  1825. "type": "github"
  1826. },
  1827. {
  1828. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1829. "type": "tidelift"
  1830. }
  1831. ],
  1832. "time": "2020-09-21T18:10:53+00:00"
  1833. },
  1834. {
  1835. "name": "maennchen/zipstream-php",
  1836. "version": "2.1.0",
  1837. "source": {
  1838. "type": "git",
  1839. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  1840. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  1841. },
  1842. "dist": {
  1843. "type": "zip",
  1844. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  1845. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  1846. "shasum": ""
  1847. },
  1848. "require": {
  1849. "myclabs/php-enum": "^1.5",
  1850. "php": ">= 7.1",
  1851. "psr/http-message": "^1.0",
  1852. "symfony/polyfill-mbstring": "^1.0"
  1853. },
  1854. "require-dev": {
  1855. "ext-zip": "*",
  1856. "guzzlehttp/guzzle": ">= 6.3",
  1857. "mikey179/vfsstream": "^1.6",
  1858. "phpunit/phpunit": ">= 7.5"
  1859. },
  1860. "type": "library",
  1861. "autoload": {
  1862. "psr-4": {
  1863. "ZipStream\\": "src/"
  1864. }
  1865. },
  1866. "notification-url": "https://packagist.org/downloads/",
  1867. "license": [
  1868. "MIT"
  1869. ],
  1870. "authors": [
  1871. {
  1872. "name": "Paul Duncan",
  1873. "email": "pabs@pablotron.org"
  1874. },
  1875. {
  1876. "name": "Jonatan Männchen",
  1877. "email": "jonatan@maennchen.ch"
  1878. },
  1879. {
  1880. "name": "Jesse Donat",
  1881. "email": "donatj@gmail.com"
  1882. },
  1883. {
  1884. "name": "András Kolesár",
  1885. "email": "kolesar@kolesar.hu"
  1886. }
  1887. ],
  1888. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  1889. "keywords": [
  1890. "stream",
  1891. "zip"
  1892. ],
  1893. "funding": [
  1894. {
  1895. "url": "https://opencollective.com/zipstream",
  1896. "type": "open_collective"
  1897. }
  1898. ],
  1899. "time": "2020-05-30T13:11:16+00:00"
  1900. },
  1901. {
  1902. "name": "markbaker/complex",
  1903. "version": "1.5.0",
  1904. "source": {
  1905. "type": "git",
  1906. "url": "https://github.com/MarkBaker/PHPComplex.git",
  1907. "reference": "c3131244e29c08d44fefb49e0dd35021e9e39dd2"
  1908. },
  1909. "dist": {
  1910. "type": "zip",
  1911. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/c3131244e29c08d44fefb49e0dd35021e9e39dd2",
  1912. "reference": "c3131244e29c08d44fefb49e0dd35021e9e39dd2",
  1913. "shasum": ""
  1914. },
  1915. "require": {
  1916. "php": "^5.6.0|^7.0"
  1917. },
  1918. "require-dev": {
  1919. "dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
  1920. "phpcompatibility/php-compatibility": "^9.0",
  1921. "phpdocumentor/phpdocumentor": "2.*",
  1922. "phploc/phploc": "^4.0|^5.0|^6.0|^7.0",
  1923. "phpmd/phpmd": "2.*",
  1924. "phpunit/phpunit": "^4.8.35|^5.0|^6.0|^7.0",
  1925. "sebastian/phpcpd": "2.*",
  1926. "squizlabs/php_codesniffer": "^3.4.0"
  1927. },
  1928. "type": "library",
  1929. "autoload": {
  1930. "psr-4": {
  1931. "Complex\\": "classes/src/"
  1932. },
  1933. "files": [
  1934. "classes/src/functions/abs.php",
  1935. "classes/src/functions/acos.php",
  1936. "classes/src/functions/acosh.php",
  1937. "classes/src/functions/acot.php",
  1938. "classes/src/functions/acoth.php",
  1939. "classes/src/functions/acsc.php",
  1940. "classes/src/functions/acsch.php",
  1941. "classes/src/functions/argument.php",
  1942. "classes/src/functions/asec.php",
  1943. "classes/src/functions/asech.php",
  1944. "classes/src/functions/asin.php",
  1945. "classes/src/functions/asinh.php",
  1946. "classes/src/functions/atan.php",
  1947. "classes/src/functions/atanh.php",
  1948. "classes/src/functions/conjugate.php",
  1949. "classes/src/functions/cos.php",
  1950. "classes/src/functions/cosh.php",
  1951. "classes/src/functions/cot.php",
  1952. "classes/src/functions/coth.php",
  1953. "classes/src/functions/csc.php",
  1954. "classes/src/functions/csch.php",
  1955. "classes/src/functions/exp.php",
  1956. "classes/src/functions/inverse.php",
  1957. "classes/src/functions/ln.php",
  1958. "classes/src/functions/log2.php",
  1959. "classes/src/functions/log10.php",
  1960. "classes/src/functions/negative.php",
  1961. "classes/src/functions/pow.php",
  1962. "classes/src/functions/rho.php",
  1963. "classes/src/functions/sec.php",
  1964. "classes/src/functions/sech.php",
  1965. "classes/src/functions/sin.php",
  1966. "classes/src/functions/sinh.php",
  1967. "classes/src/functions/sqrt.php",
  1968. "classes/src/functions/tan.php",
  1969. "classes/src/functions/tanh.php",
  1970. "classes/src/functions/theta.php",
  1971. "classes/src/operations/add.php",
  1972. "classes/src/operations/subtract.php",
  1973. "classes/src/operations/multiply.php",
  1974. "classes/src/operations/divideby.php",
  1975. "classes/src/operations/divideinto.php"
  1976. ]
  1977. },
  1978. "notification-url": "https://packagist.org/downloads/",
  1979. "license": [
  1980. "MIT"
  1981. ],
  1982. "authors": [
  1983. {
  1984. "name": "Mark Baker",
  1985. "email": "mark@lange.demon.co.uk"
  1986. }
  1987. ],
  1988. "description": "PHP Class for working with complex numbers",
  1989. "homepage": "https://github.com/MarkBaker/PHPComplex",
  1990. "keywords": [
  1991. "complex",
  1992. "mathematics"
  1993. ],
  1994. "time": "2020-08-26T19:47:57+00:00"
  1995. },
  1996. {
  1997. "name": "markbaker/matrix",
  1998. "version": "1.2.1",
  1999. "source": {
  2000. "type": "git",
  2001. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2002. "reference": "182d44c3b2e3b063468f7481ae3ef71c69dc1409"
  2003. },
  2004. "dist": {
  2005. "type": "zip",
  2006. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/182d44c3b2e3b063468f7481ae3ef71c69dc1409",
  2007. "reference": "182d44c3b2e3b063468f7481ae3ef71c69dc1409",
  2008. "shasum": ""
  2009. },
  2010. "require": {
  2011. "php": "^5.6.0|^7.0.0"
  2012. },
  2013. "require-dev": {
  2014. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2015. "phpcompatibility/php-compatibility": "dev-master",
  2016. "phploc/phploc": "^4",
  2017. "phpmd/phpmd": "dev-master",
  2018. "phpunit/phpunit": "^5.7|^6.0|7.0",
  2019. "sebastian/phpcpd": "^3.0",
  2020. "squizlabs/php_codesniffer": "^3.0@dev"
  2021. },
  2022. "type": "library",
  2023. "autoload": {
  2024. "psr-4": {
  2025. "Matrix\\": "classes/src/"
  2026. },
  2027. "files": [
  2028. "classes/src/functions/adjoint.php",
  2029. "classes/src/functions/antidiagonal.php",
  2030. "classes/src/functions/cofactors.php",
  2031. "classes/src/functions/determinant.php",
  2032. "classes/src/functions/diagonal.php",
  2033. "classes/src/functions/identity.php",
  2034. "classes/src/functions/inverse.php",
  2035. "classes/src/functions/minors.php",
  2036. "classes/src/functions/trace.php",
  2037. "classes/src/functions/transpose.php",
  2038. "classes/src/operations/add.php",
  2039. "classes/src/operations/directsum.php",
  2040. "classes/src/operations/subtract.php",
  2041. "classes/src/operations/multiply.php",
  2042. "classes/src/operations/divideby.php",
  2043. "classes/src/operations/divideinto.php"
  2044. ]
  2045. },
  2046. "notification-url": "https://packagist.org/downloads/",
  2047. "license": [
  2048. "MIT"
  2049. ],
  2050. "authors": [
  2051. {
  2052. "name": "Mark Baker",
  2053. "email": "mark@lange.demon.co.uk"
  2054. }
  2055. ],
  2056. "description": "PHP Class for working with matrices",
  2057. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2058. "keywords": [
  2059. "mathematics",
  2060. "matrix",
  2061. "vector"
  2062. ],
  2063. "time": "2020-08-28T19:41:55+00:00"
  2064. },
  2065. {
  2066. "name": "maxmind-db/reader",
  2067. "version": "v1.7.0",
  2068. "source": {
  2069. "type": "git",
  2070. "url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git",
  2071. "reference": "942553da239f12051275f9c666538b5dd09e2908"
  2072. },
  2073. "dist": {
  2074. "type": "zip",
  2075. "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/942553da239f12051275f9c666538b5dd09e2908",
  2076. "reference": "942553da239f12051275f9c666538b5dd09e2908",
  2077. "shasum": ""
  2078. },
  2079. "require": {
  2080. "php": ">=7.2"
  2081. },
  2082. "conflict": {
  2083. "ext-maxminddb": "<1.7.0,>=2.0.0"
  2084. },
  2085. "require-dev": {
  2086. "friendsofphp/php-cs-fixer": "2.*",
  2087. "php-coveralls/php-coveralls": "^2.1",
  2088. "phpunit/phpcov": ">=6.0.0",
  2089. "phpunit/phpunit": ">=8.0.0,<10.0.0",
  2090. "squizlabs/php_codesniffer": "3.*"
  2091. },
  2092. "suggest": {
  2093. "ext-bcmath": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2094. "ext-gmp": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2095. "ext-maxminddb": "A C-based database decoder that provides significantly faster lookups"
  2096. },
  2097. "type": "library",
  2098. "autoload": {
  2099. "psr-4": {
  2100. "MaxMind\\Db\\": "src/MaxMind/Db"
  2101. }
  2102. },
  2103. "notification-url": "https://packagist.org/downloads/",
  2104. "license": [
  2105. "Apache-2.0"
  2106. ],
  2107. "authors": [
  2108. {
  2109. "name": "Gregory J. Oschwald",
  2110. "email": "goschwald@maxmind.com",
  2111. "homepage": "https://www.maxmind.com/"
  2112. }
  2113. ],
  2114. "description": "MaxMind DB Reader API",
  2115. "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
  2116. "keywords": [
  2117. "database",
  2118. "geoip",
  2119. "geoip2",
  2120. "geolocation",
  2121. "maxmind"
  2122. ],
  2123. "time": "2020-08-07T22:10:05+00:00"
  2124. },
  2125. {
  2126. "name": "maxmind/web-service-common",
  2127. "version": "v0.7.0",
  2128. "source": {
  2129. "type": "git",
  2130. "url": "https://github.com/maxmind/web-service-common-php.git",
  2131. "reference": "74c996c218ada5c639c8c2f076756e059f5552fc"
  2132. },
  2133. "dist": {
  2134. "type": "zip",
  2135. "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/74c996c218ada5c639c8c2f076756e059f5552fc",
  2136. "reference": "74c996c218ada5c639c8c2f076756e059f5552fc",
  2137. "shasum": ""
  2138. },
  2139. "require": {
  2140. "composer/ca-bundle": "^1.0.3",
  2141. "ext-curl": "*",
  2142. "ext-json": "*",
  2143. "php": ">=5.6"
  2144. },
  2145. "require-dev": {
  2146. "friendsofphp/php-cs-fixer": "2.*",
  2147. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0",
  2148. "squizlabs/php_codesniffer": "3.*"
  2149. },
  2150. "type": "library",
  2151. "autoload": {
  2152. "psr-4": {
  2153. "MaxMind\\Exception\\": "src/Exception",
  2154. "MaxMind\\WebService\\": "src/WebService"
  2155. }
  2156. },
  2157. "notification-url": "https://packagist.org/downloads/",
  2158. "license": [
  2159. "Apache-2.0"
  2160. ],
  2161. "authors": [
  2162. {
  2163. "name": "Gregory Oschwald",
  2164. "email": "goschwald@maxmind.com"
  2165. }
  2166. ],
  2167. "description": "Internal MaxMind Web Service API",
  2168. "homepage": "https://github.com/maxmind/web-service-common-php",
  2169. "time": "2020-05-06T14:07:26+00:00"
  2170. },
  2171. {
  2172. "name": "mews/captcha",
  2173. "version": "3.2.1",
  2174. "source": {
  2175. "type": "git",
  2176. "url": "https://github.com/mewebstudio/captcha.git",
  2177. "reference": "0bf387835ad5ae1b3e02ffda0f8f9f8da3d54a60"
  2178. },
  2179. "dist": {
  2180. "type": "zip",
  2181. "url": "https://api.github.com/repos/mewebstudio/captcha/zipball/0bf387835ad5ae1b3e02ffda0f8f9f8da3d54a60",
  2182. "reference": "0bf387835ad5ae1b3e02ffda0f8f9f8da3d54a60",
  2183. "shasum": ""
  2184. },
  2185. "require": {
  2186. "ext-gd": "*",
  2187. "illuminate/config": "~5|^6|^7|^8",
  2188. "illuminate/filesystem": "~5|^6|^7|^8",
  2189. "illuminate/hashing": "~5|^6|^7|^8",
  2190. "illuminate/session": "~5|^6|^7|^8",
  2191. "illuminate/support": "~5|^6|^7|^8",
  2192. "intervention/image": "~2.5",
  2193. "php": "^7.2"
  2194. },
  2195. "require-dev": {
  2196. "mockery/mockery": "^1.0",
  2197. "phpunit/phpunit": "^8.5"
  2198. },
  2199. "type": "package",
  2200. "extra": {
  2201. "laravel": {
  2202. "providers": [
  2203. "Mews\\Captcha\\CaptchaServiceProvider"
  2204. ],
  2205. "aliases": {
  2206. "Captcha": "Mews\\Captcha\\Facades\\Captcha"
  2207. }
  2208. }
  2209. },
  2210. "autoload": {
  2211. "psr-4": {
  2212. "Mews\\Captcha\\": "src/"
  2213. },
  2214. "files": [
  2215. "src/helpers.php"
  2216. ]
  2217. },
  2218. "notification-url": "https://packagist.org/downloads/",
  2219. "license": [
  2220. "MIT"
  2221. ],
  2222. "authors": [
  2223. {
  2224. "name": "Muharrem ERİN",
  2225. "email": "me@mewebstudio.com",
  2226. "homepage": "https://github.com/mewebstudio",
  2227. "role": "Developer"
  2228. }
  2229. ],
  2230. "description": "Laravel 5 & 6 Captcha Package",
  2231. "homepage": "https://github.com/mewebstudio/captcha",
  2232. "keywords": [
  2233. "captcha",
  2234. "laravel5 Security",
  2235. "laravel6 Captcha",
  2236. "laravel6 Security"
  2237. ],
  2238. "time": "2020-09-30T07:04:15+00:00"
  2239. },
  2240. {
  2241. "name": "mews/purifier",
  2242. "version": "3.3.0",
  2243. "source": {
  2244. "type": "git",
  2245. "url": "https://github.com/mewebstudio/Purifier.git",
  2246. "reference": "da76c8705550d549a8723ffe7368c0f5554652a1"
  2247. },
  2248. "dist": {
  2249. "type": "zip",
  2250. "url": "https://api.github.com/repos/mewebstudio/Purifier/zipball/da76c8705550d549a8723ffe7368c0f5554652a1",
  2251. "reference": "da76c8705550d549a8723ffe7368c0f5554652a1",
  2252. "shasum": ""
  2253. },
  2254. "require": {
  2255. "ezyang/htmlpurifier": "4.13.*",
  2256. "illuminate/config": "^5.8|^6.0|^7.0|^8.0",
  2257. "illuminate/filesystem": "^5.8|^6.0|^7.0|^8.0",
  2258. "illuminate/support": "^5.8|^6.0|^7.0|^8.0",
  2259. "php": "^7.2"
  2260. },
  2261. "require-dev": {
  2262. "graham-campbell/testbench": "^3.2|^5.5.1",
  2263. "mockery/mockery": "^1.0",
  2264. "phpunit/phpunit": "^8.0|^9.0"
  2265. },
  2266. "suggest": {
  2267. "laravel/framework": "To test the Laravel bindings",
  2268. "laravel/lumen-framework": "To test the Lumen bindings"
  2269. },
  2270. "type": "package",
  2271. "extra": {
  2272. "laravel": {
  2273. "providers": [
  2274. "Mews\\Purifier\\PurifierServiceProvider"
  2275. ],
  2276. "aliases": {
  2277. "Purifier": "Mews\\Purifier\\Facades\\Purifier"
  2278. }
  2279. }
  2280. },
  2281. "autoload": {
  2282. "psr-4": {
  2283. "Mews\\Purifier\\": "src/"
  2284. },
  2285. "files": [
  2286. "src/helpers.php"
  2287. ]
  2288. },
  2289. "notification-url": "https://packagist.org/downloads/",
  2290. "license": [
  2291. "MIT"
  2292. ],
  2293. "authors": [
  2294. {
  2295. "name": "Muharrem ERİN",
  2296. "email": "me@mewebstudio.com",
  2297. "homepage": "https://github.com/mewebstudio",
  2298. "role": "Developer"
  2299. }
  2300. ],
  2301. "description": "Laravel 5/6/7 HtmlPurifier Package",
  2302. "homepage": "https://github.com/mewebstudio/purifier",
  2303. "keywords": [
  2304. "Purifier",
  2305. "htmlpurifier",
  2306. "laravel5 HtmlPurifier",
  2307. "laravel5 Purifier",
  2308. "laravel5 Security",
  2309. "laravel6 HtmlPurifier",
  2310. "laravel6 Purifier",
  2311. "laravel6 Security",
  2312. "security",
  2313. "xss"
  2314. ],
  2315. "time": "2020-09-10T22:30:34+00:00"
  2316. },
  2317. {
  2318. "name": "mobiledetect/mobiledetectlib",
  2319. "version": "2.8.34",
  2320. "source": {
  2321. "type": "git",
  2322. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  2323. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b"
  2324. },
  2325. "dist": {
  2326. "type": "zip",
  2327. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  2328. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  2329. "shasum": ""
  2330. },
  2331. "require": {
  2332. "php": ">=5.0.0"
  2333. },
  2334. "require-dev": {
  2335. "phpunit/phpunit": "~4.8.35||~5.7"
  2336. },
  2337. "type": "library",
  2338. "autoload": {
  2339. "classmap": [
  2340. "Mobile_Detect.php"
  2341. ],
  2342. "psr-0": {
  2343. "Detection": "namespaced/"
  2344. }
  2345. },
  2346. "notification-url": "https://packagist.org/downloads/",
  2347. "license": [
  2348. "MIT"
  2349. ],
  2350. "authors": [
  2351. {
  2352. "name": "Serban Ghita",
  2353. "email": "serbanghita@gmail.com",
  2354. "homepage": "http://mobiledetect.net",
  2355. "role": "Developer"
  2356. }
  2357. ],
  2358. "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.",
  2359. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  2360. "keywords": [
  2361. "detect mobile devices",
  2362. "mobile",
  2363. "mobile detect",
  2364. "mobile detector",
  2365. "php mobile detect"
  2366. ],
  2367. "time": "2019-09-18T18:44:20+00:00"
  2368. },
  2369. {
  2370. "name": "monolog/monolog",
  2371. "version": "2.1.1",
  2372. "source": {
  2373. "type": "git",
  2374. "url": "https://github.com/Seldaek/monolog.git",
  2375. "reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5"
  2376. },
  2377. "dist": {
  2378. "type": "zip",
  2379. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f9eee5cec93dfb313a38b6b288741e84e53f02d5",
  2380. "reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5",
  2381. "shasum": ""
  2382. },
  2383. "require": {
  2384. "php": ">=7.2",
  2385. "psr/log": "^1.0.1"
  2386. },
  2387. "provide": {
  2388. "psr/log-implementation": "1.0.0"
  2389. },
  2390. "require-dev": {
  2391. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2392. "doctrine/couchdb": "~1.0@dev",
  2393. "elasticsearch/elasticsearch": "^6.0",
  2394. "graylog2/gelf-php": "^1.4.2",
  2395. "php-amqplib/php-amqplib": "~2.4",
  2396. "php-console/php-console": "^3.1.3",
  2397. "php-parallel-lint/php-parallel-lint": "^1.0",
  2398. "phpspec/prophecy": "^1.6.1",
  2399. "phpunit/phpunit": "^8.5",
  2400. "predis/predis": "^1.1",
  2401. "rollbar/rollbar": "^1.3",
  2402. "ruflin/elastica": ">=0.90 <3.0",
  2403. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2404. },
  2405. "suggest": {
  2406. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2407. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2408. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2409. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2410. "ext-mbstring": "Allow to work properly with unicode symbols",
  2411. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2412. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2413. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2414. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2415. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2416. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2417. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2418. },
  2419. "type": "library",
  2420. "extra": {
  2421. "branch-alias": {
  2422. "dev-master": "2.x-dev"
  2423. }
  2424. },
  2425. "autoload": {
  2426. "psr-4": {
  2427. "Monolog\\": "src/Monolog"
  2428. }
  2429. },
  2430. "notification-url": "https://packagist.org/downloads/",
  2431. "license": [
  2432. "MIT"
  2433. ],
  2434. "authors": [
  2435. {
  2436. "name": "Jordi Boggiano",
  2437. "email": "j.boggiano@seld.be",
  2438. "homepage": "http://seld.be"
  2439. }
  2440. ],
  2441. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2442. "homepage": "http://github.com/Seldaek/monolog",
  2443. "keywords": [
  2444. "log",
  2445. "logging",
  2446. "psr-3"
  2447. ],
  2448. "funding": [
  2449. {
  2450. "url": "https://github.com/Seldaek",
  2451. "type": "github"
  2452. },
  2453. {
  2454. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2455. "type": "tidelift"
  2456. }
  2457. ],
  2458. "time": "2020-07-23T08:41:23+00:00"
  2459. },
  2460. {
  2461. "name": "myclabs/php-enum",
  2462. "version": "1.7.6",
  2463. "source": {
  2464. "type": "git",
  2465. "url": "https://github.com/myclabs/php-enum.git",
  2466. "reference": "5f36467c7a87e20fbdc51e524fd8f9d1de80187c"
  2467. },
  2468. "dist": {
  2469. "type": "zip",
  2470. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/5f36467c7a87e20fbdc51e524fd8f9d1de80187c",
  2471. "reference": "5f36467c7a87e20fbdc51e524fd8f9d1de80187c",
  2472. "shasum": ""
  2473. },
  2474. "require": {
  2475. "ext-json": "*",
  2476. "php": ">=7.1"
  2477. },
  2478. "require-dev": {
  2479. "phpunit/phpunit": "^7",
  2480. "squizlabs/php_codesniffer": "1.*",
  2481. "vimeo/psalm": "^3.8"
  2482. },
  2483. "type": "library",
  2484. "autoload": {
  2485. "psr-4": {
  2486. "MyCLabs\\Enum\\": "src/"
  2487. }
  2488. },
  2489. "notification-url": "https://packagist.org/downloads/",
  2490. "license": [
  2491. "MIT"
  2492. ],
  2493. "authors": [
  2494. {
  2495. "name": "PHP Enum contributors",
  2496. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2497. }
  2498. ],
  2499. "description": "PHP Enum implementation",
  2500. "homepage": "http://github.com/myclabs/php-enum",
  2501. "keywords": [
  2502. "enum"
  2503. ],
  2504. "time": "2020-02-14T08:15:52+00:00"
  2505. },
  2506. {
  2507. "name": "nesbot/carbon",
  2508. "version": "2.40.1",
  2509. "source": {
  2510. "type": "git",
  2511. "url": "https://github.com/briannesbitt/Carbon.git",
  2512. "reference": "d9a76d8b7eb0f97cf3a82529393245212f40ba3b"
  2513. },
  2514. "dist": {
  2515. "type": "zip",
  2516. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/d9a76d8b7eb0f97cf3a82529393245212f40ba3b",
  2517. "reference": "d9a76d8b7eb0f97cf3a82529393245212f40ba3b",
  2518. "shasum": ""
  2519. },
  2520. "require": {
  2521. "ext-json": "*",
  2522. "php": "^7.1.8 || ^8.0",
  2523. "symfony/polyfill-mbstring": "^1.0",
  2524. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  2525. },
  2526. "require-dev": {
  2527. "doctrine/orm": "^2.7",
  2528. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  2529. "kylekatarnls/multi-tester": "^2.0",
  2530. "phpmd/phpmd": "^2.9",
  2531. "phpstan/extension-installer": "^1.0",
  2532. "phpstan/phpstan": "^0.12.35",
  2533. "phpunit/phpunit": "^7.5 || ^8.0",
  2534. "squizlabs/php_codesniffer": "^3.4"
  2535. },
  2536. "bin": [
  2537. "bin/carbon"
  2538. ],
  2539. "type": "library",
  2540. "extra": {
  2541. "branch-alias": {
  2542. "dev-master": "2.x-dev",
  2543. "dev-3.x": "3.x-dev"
  2544. },
  2545. "laravel": {
  2546. "providers": [
  2547. "Carbon\\Laravel\\ServiceProvider"
  2548. ]
  2549. },
  2550. "phpstan": {
  2551. "includes": [
  2552. "extension.neon"
  2553. ]
  2554. }
  2555. },
  2556. "autoload": {
  2557. "psr-4": {
  2558. "Carbon\\": "src/Carbon/"
  2559. }
  2560. },
  2561. "notification-url": "https://packagist.org/downloads/",
  2562. "license": [
  2563. "MIT"
  2564. ],
  2565. "authors": [
  2566. {
  2567. "name": "Brian Nesbitt",
  2568. "email": "brian@nesbot.com",
  2569. "homepage": "http://nesbot.com"
  2570. },
  2571. {
  2572. "name": "kylekatarnls",
  2573. "homepage": "http://github.com/kylekatarnls"
  2574. }
  2575. ],
  2576. "description": "An API extension for DateTime that supports 281 different languages.",
  2577. "homepage": "http://carbon.nesbot.com",
  2578. "keywords": [
  2579. "date",
  2580. "datetime",
  2581. "time"
  2582. ],
  2583. "funding": [
  2584. {
  2585. "url": "https://opencollective.com/Carbon",
  2586. "type": "open_collective"
  2587. },
  2588. {
  2589. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  2590. "type": "tidelift"
  2591. }
  2592. ],
  2593. "time": "2020-09-23T08:17:37+00:00"
  2594. },
  2595. {
  2596. "name": "nikic/php-parser",
  2597. "version": "v4.10.2",
  2598. "source": {
  2599. "type": "git",
  2600. "url": "https://github.com/nikic/PHP-Parser.git",
  2601. "reference": "658f1be311a230e0907f5dfe0213742aff0596de"
  2602. },
  2603. "dist": {
  2604. "type": "zip",
  2605. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/658f1be311a230e0907f5dfe0213742aff0596de",
  2606. "reference": "658f1be311a230e0907f5dfe0213742aff0596de",
  2607. "shasum": ""
  2608. },
  2609. "require": {
  2610. "ext-tokenizer": "*",
  2611. "php": ">=7.0"
  2612. },
  2613. "require-dev": {
  2614. "ircmaxell/php-yacc": "^0.0.7",
  2615. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  2616. },
  2617. "bin": [
  2618. "bin/php-parse"
  2619. ],
  2620. "type": "library",
  2621. "extra": {
  2622. "branch-alias": {
  2623. "dev-master": "4.9-dev"
  2624. }
  2625. },
  2626. "autoload": {
  2627. "psr-4": {
  2628. "PhpParser\\": "lib/PhpParser"
  2629. }
  2630. },
  2631. "notification-url": "https://packagist.org/downloads/",
  2632. "license": [
  2633. "BSD-3-Clause"
  2634. ],
  2635. "authors": [
  2636. {
  2637. "name": "Nikita Popov"
  2638. }
  2639. ],
  2640. "description": "A PHP parser written in PHP",
  2641. "keywords": [
  2642. "parser",
  2643. "php"
  2644. ],
  2645. "time": "2020-09-26T10:30:38+00:00"
  2646. },
  2647. {
  2648. "name": "openlss/lib-array2xml",
  2649. "version": "1.0.0",
  2650. "source": {
  2651. "type": "git",
  2652. "url": "https://github.com/nullivex/lib-array2xml.git",
  2653. "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90"
  2654. },
  2655. "dist": {
  2656. "type": "zip",
  2657. "url": "https://api.github.com/repos/nullivex/lib-array2xml/zipball/a91f18a8dfc69ffabe5f9b068bc39bb202c81d90",
  2658. "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90",
  2659. "shasum": ""
  2660. },
  2661. "require": {
  2662. "php": ">=5.3.2"
  2663. },
  2664. "type": "library",
  2665. "autoload": {
  2666. "psr-0": {
  2667. "LSS": ""
  2668. }
  2669. },
  2670. "notification-url": "https://packagist.org/downloads/",
  2671. "license": [
  2672. "Apache-2.0"
  2673. ],
  2674. "authors": [
  2675. {
  2676. "name": "Bryan Tong",
  2677. "email": "bryan@nullivex.com",
  2678. "homepage": "https://www.nullivex.com"
  2679. },
  2680. {
  2681. "name": "Tony Butler",
  2682. "email": "spudz76@gmail.com",
  2683. "homepage": "https://www.nullivex.com"
  2684. }
  2685. ],
  2686. "description": "Array2XML conversion library credit to lalit.org",
  2687. "homepage": "https://www.nullivex.com",
  2688. "keywords": [
  2689. "array",
  2690. "array conversion",
  2691. "xml",
  2692. "xml conversion"
  2693. ],
  2694. "time": "2019-03-29T20:06:56+00:00"
  2695. },
  2696. {
  2697. "name": "opis/closure",
  2698. "version": "3.5.7",
  2699. "source": {
  2700. "type": "git",
  2701. "url": "https://github.com/opis/closure.git",
  2702. "reference": "4531e53afe2fc660403e76fb7644e95998bff7bf"
  2703. },
  2704. "dist": {
  2705. "type": "zip",
  2706. "url": "https://api.github.com/repos/opis/closure/zipball/4531e53afe2fc660403e76fb7644e95998bff7bf",
  2707. "reference": "4531e53afe2fc660403e76fb7644e95998bff7bf",
  2708. "shasum": ""
  2709. },
  2710. "require": {
  2711. "php": "^5.4 || ^7.0"
  2712. },
  2713. "require-dev": {
  2714. "jeremeamia/superclosure": "^2.0",
  2715. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  2716. },
  2717. "type": "library",
  2718. "extra": {
  2719. "branch-alias": {
  2720. "dev-master": "3.5.x-dev"
  2721. }
  2722. },
  2723. "autoload": {
  2724. "psr-4": {
  2725. "Opis\\Closure\\": "src/"
  2726. },
  2727. "files": [
  2728. "functions.php"
  2729. ]
  2730. },
  2731. "notification-url": "https://packagist.org/downloads/",
  2732. "license": [
  2733. "MIT"
  2734. ],
  2735. "authors": [
  2736. {
  2737. "name": "Marius Sarca",
  2738. "email": "marius.sarca@gmail.com"
  2739. },
  2740. {
  2741. "name": "Sorin Sarca",
  2742. "email": "sarca_sorin@hotmail.com"
  2743. }
  2744. ],
  2745. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  2746. "homepage": "https://opis.io/closure",
  2747. "keywords": [
  2748. "anonymous functions",
  2749. "closure",
  2750. "function",
  2751. "serializable",
  2752. "serialization",
  2753. "serialize"
  2754. ],
  2755. "time": "2020-09-06T17:02:15+00:00"
  2756. },
  2757. {
  2758. "name": "overtrue/laravel-lang",
  2759. "version": "4.1.1",
  2760. "source": {
  2761. "type": "git",
  2762. "url": "https://github.com/overtrue/laravel-lang.git",
  2763. "reference": "8db02bb782ff3f27198740a7a5f47b8934f949ea"
  2764. },
  2765. "dist": {
  2766. "type": "zip",
  2767. "url": "https://api.github.com/repos/overtrue/laravel-lang/zipball/8db02bb782ff3f27198740a7a5f47b8934f949ea",
  2768. "reference": "8db02bb782ff3f27198740a7a5f47b8934f949ea",
  2769. "shasum": ""
  2770. },
  2771. "require": {
  2772. "ext-json": "*",
  2773. "laravel-lang/lang": "~7.0",
  2774. "symfony/process": "^5.0.0"
  2775. },
  2776. "require-dev": {
  2777. "laravel/framework": "~8.1"
  2778. },
  2779. "type": "library",
  2780. "extra": {
  2781. "laravel": {
  2782. "providers": [
  2783. "Overtrue\\LaravelLang\\TranslationServiceProvider"
  2784. ]
  2785. }
  2786. },
  2787. "autoload": {
  2788. "psr-4": {
  2789. "Overtrue\\LaravelLang\\": "src/"
  2790. },
  2791. "files": [
  2792. "src/helpers.php"
  2793. ]
  2794. },
  2795. "notification-url": "https://packagist.org/downloads/",
  2796. "license": [
  2797. "MIT"
  2798. ],
  2799. "authors": [
  2800. {
  2801. "name": "overtrue",
  2802. "email": "anzhengchao@gmail.com"
  2803. }
  2804. ],
  2805. "description": "List of 75 languages for Laravel 4, 5, 6 and 7",
  2806. "keywords": [
  2807. "i18n",
  2808. "languages",
  2809. "laravel",
  2810. "locale",
  2811. "overtrue"
  2812. ],
  2813. "funding": [
  2814. {
  2815. "url": "https://www.patreon.com/overtrue",
  2816. "type": "patreon"
  2817. }
  2818. ],
  2819. "time": "2020-09-16T03:00:55+00:00"
  2820. },
  2821. {
  2822. "name": "paragonie/random_compat",
  2823. "version": "v9.99.99",
  2824. "source": {
  2825. "type": "git",
  2826. "url": "https://github.com/paragonie/random_compat.git",
  2827. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  2828. },
  2829. "dist": {
  2830. "type": "zip",
  2831. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  2832. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  2833. "shasum": ""
  2834. },
  2835. "require": {
  2836. "php": "^7"
  2837. },
  2838. "require-dev": {
  2839. "phpunit/phpunit": "4.*|5.*",
  2840. "vimeo/psalm": "^1"
  2841. },
  2842. "suggest": {
  2843. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2844. },
  2845. "type": "library",
  2846. "notification-url": "https://packagist.org/downloads/",
  2847. "license": [
  2848. "MIT"
  2849. ],
  2850. "authors": [
  2851. {
  2852. "name": "Paragon Initiative Enterprises",
  2853. "email": "security@paragonie.com",
  2854. "homepage": "https://paragonie.com"
  2855. }
  2856. ],
  2857. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2858. "keywords": [
  2859. "csprng",
  2860. "polyfill",
  2861. "pseudorandom",
  2862. "random"
  2863. ],
  2864. "time": "2018-07-02T15:55:56+00:00"
  2865. },
  2866. {
  2867. "name": "phpoffice/phpspreadsheet",
  2868. "version": "1.14.1",
  2869. "source": {
  2870. "type": "git",
  2871. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  2872. "reference": "2383aad5689778470491581442aab38cec41bf1d"
  2873. },
  2874. "dist": {
  2875. "type": "zip",
  2876. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/2383aad5689778470491581442aab38cec41bf1d",
  2877. "reference": "2383aad5689778470491581442aab38cec41bf1d",
  2878. "shasum": ""
  2879. },
  2880. "require": {
  2881. "ext-ctype": "*",
  2882. "ext-dom": "*",
  2883. "ext-fileinfo": "*",
  2884. "ext-gd": "*",
  2885. "ext-iconv": "*",
  2886. "ext-libxml": "*",
  2887. "ext-mbstring": "*",
  2888. "ext-simplexml": "*",
  2889. "ext-xml": "*",
  2890. "ext-xmlreader": "*",
  2891. "ext-xmlwriter": "*",
  2892. "ext-zip": "*",
  2893. "ext-zlib": "*",
  2894. "maennchen/zipstream-php": "^2.1",
  2895. "markbaker/complex": "^1.4",
  2896. "markbaker/matrix": "^1.2",
  2897. "php": "^7.2",
  2898. "psr/http-client": "^1.0",
  2899. "psr/http-factory": "^1.0",
  2900. "psr/simple-cache": "^1.0"
  2901. },
  2902. "require-dev": {
  2903. "dompdf/dompdf": "^0.8.5",
  2904. "friendsofphp/php-cs-fixer": "^2.16",
  2905. "jpgraph/jpgraph": "^4.0",
  2906. "mpdf/mpdf": "^8.0",
  2907. "phpcompatibility/php-compatibility": "^9.3",
  2908. "phpunit/phpunit": "^8.5",
  2909. "squizlabs/php_codesniffer": "^3.5",
  2910. "tecnickcom/tcpdf": "^6.3"
  2911. },
  2912. "suggest": {
  2913. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  2914. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  2915. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  2916. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  2917. },
  2918. "type": "library",
  2919. "autoload": {
  2920. "psr-4": {
  2921. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  2922. }
  2923. },
  2924. "notification-url": "https://packagist.org/downloads/",
  2925. "license": [
  2926. "MIT"
  2927. ],
  2928. "authors": [
  2929. {
  2930. "name": "Maarten Balliauw",
  2931. "homepage": "https://blog.maartenballiauw.be"
  2932. },
  2933. {
  2934. "name": "Mark Baker",
  2935. "homepage": "https://markbakeruk.net"
  2936. },
  2937. {
  2938. "name": "Franck Lefevre",
  2939. "homepage": "https://rootslabs.net"
  2940. },
  2941. {
  2942. "name": "Erik Tilt"
  2943. },
  2944. {
  2945. "name": "Adrien Crivelli"
  2946. }
  2947. ],
  2948. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  2949. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  2950. "keywords": [
  2951. "OpenXML",
  2952. "excel",
  2953. "gnumeric",
  2954. "ods",
  2955. "php",
  2956. "spreadsheet",
  2957. "xls",
  2958. "xlsx"
  2959. ],
  2960. "time": "2020-07-19T09:51:35+00:00"
  2961. },
  2962. {
  2963. "name": "phpoption/phpoption",
  2964. "version": "1.7.5",
  2965. "source": {
  2966. "type": "git",
  2967. "url": "https://github.com/schmittjoh/php-option.git",
  2968. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  2969. },
  2970. "dist": {
  2971. "type": "zip",
  2972. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  2973. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  2974. "shasum": ""
  2975. },
  2976. "require": {
  2977. "php": "^5.5.9 || ^7.0 || ^8.0"
  2978. },
  2979. "require-dev": {
  2980. "bamarni/composer-bin-plugin": "^1.4.1",
  2981. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  2982. },
  2983. "type": "library",
  2984. "extra": {
  2985. "branch-alias": {
  2986. "dev-master": "1.7-dev"
  2987. }
  2988. },
  2989. "autoload": {
  2990. "psr-4": {
  2991. "PhpOption\\": "src/PhpOption/"
  2992. }
  2993. },
  2994. "notification-url": "https://packagist.org/downloads/",
  2995. "license": [
  2996. "Apache-2.0"
  2997. ],
  2998. "authors": [
  2999. {
  3000. "name": "Johannes M. Schmitt",
  3001. "email": "schmittjoh@gmail.com"
  3002. },
  3003. {
  3004. "name": "Graham Campbell",
  3005. "email": "graham@alt-three.com"
  3006. }
  3007. ],
  3008. "description": "Option Type for PHP",
  3009. "keywords": [
  3010. "language",
  3011. "option",
  3012. "php",
  3013. "type"
  3014. ],
  3015. "funding": [
  3016. {
  3017. "url": "https://github.com/GrahamCampbell",
  3018. "type": "github"
  3019. },
  3020. {
  3021. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3022. "type": "tidelift"
  3023. }
  3024. ],
  3025. "time": "2020-07-20T17:29:33+00:00"
  3026. },
  3027. {
  3028. "name": "psr/container",
  3029. "version": "1.0.0",
  3030. "source": {
  3031. "type": "git",
  3032. "url": "https://github.com/php-fig/container.git",
  3033. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  3034. },
  3035. "dist": {
  3036. "type": "zip",
  3037. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3038. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  3039. "shasum": ""
  3040. },
  3041. "require": {
  3042. "php": ">=5.3.0"
  3043. },
  3044. "type": "library",
  3045. "extra": {
  3046. "branch-alias": {
  3047. "dev-master": "1.0.x-dev"
  3048. }
  3049. },
  3050. "autoload": {
  3051. "psr-4": {
  3052. "Psr\\Container\\": "src/"
  3053. }
  3054. },
  3055. "notification-url": "https://packagist.org/downloads/",
  3056. "license": [
  3057. "MIT"
  3058. ],
  3059. "authors": [
  3060. {
  3061. "name": "PHP-FIG",
  3062. "homepage": "http://www.php-fig.org/"
  3063. }
  3064. ],
  3065. "description": "Common Container Interface (PHP FIG PSR-11)",
  3066. "homepage": "https://github.com/php-fig/container",
  3067. "keywords": [
  3068. "PSR-11",
  3069. "container",
  3070. "container-interface",
  3071. "container-interop",
  3072. "psr"
  3073. ],
  3074. "time": "2017-02-14T16:28:37+00:00"
  3075. },
  3076. {
  3077. "name": "psr/event-dispatcher",
  3078. "version": "1.0.0",
  3079. "source": {
  3080. "type": "git",
  3081. "url": "https://github.com/php-fig/event-dispatcher.git",
  3082. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3083. },
  3084. "dist": {
  3085. "type": "zip",
  3086. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3087. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3088. "shasum": ""
  3089. },
  3090. "require": {
  3091. "php": ">=7.2.0"
  3092. },
  3093. "type": "library",
  3094. "extra": {
  3095. "branch-alias": {
  3096. "dev-master": "1.0.x-dev"
  3097. }
  3098. },
  3099. "autoload": {
  3100. "psr-4": {
  3101. "Psr\\EventDispatcher\\": "src/"
  3102. }
  3103. },
  3104. "notification-url": "https://packagist.org/downloads/",
  3105. "license": [
  3106. "MIT"
  3107. ],
  3108. "authors": [
  3109. {
  3110. "name": "PHP-FIG",
  3111. "homepage": "http://www.php-fig.org/"
  3112. }
  3113. ],
  3114. "description": "Standard interfaces for event handling.",
  3115. "keywords": [
  3116. "events",
  3117. "psr",
  3118. "psr-14"
  3119. ],
  3120. "time": "2019-01-08T18:20:26+00:00"
  3121. },
  3122. {
  3123. "name": "psr/http-client",
  3124. "version": "1.0.1",
  3125. "source": {
  3126. "type": "git",
  3127. "url": "https://github.com/php-fig/http-client.git",
  3128. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3129. },
  3130. "dist": {
  3131. "type": "zip",
  3132. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3133. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3134. "shasum": ""
  3135. },
  3136. "require": {
  3137. "php": "^7.0 || ^8.0",
  3138. "psr/http-message": "^1.0"
  3139. },
  3140. "type": "library",
  3141. "extra": {
  3142. "branch-alias": {
  3143. "dev-master": "1.0.x-dev"
  3144. }
  3145. },
  3146. "autoload": {
  3147. "psr-4": {
  3148. "Psr\\Http\\Client\\": "src/"
  3149. }
  3150. },
  3151. "notification-url": "https://packagist.org/downloads/",
  3152. "license": [
  3153. "MIT"
  3154. ],
  3155. "authors": [
  3156. {
  3157. "name": "PHP-FIG",
  3158. "homepage": "http://www.php-fig.org/"
  3159. }
  3160. ],
  3161. "description": "Common interface for HTTP clients",
  3162. "homepage": "https://github.com/php-fig/http-client",
  3163. "keywords": [
  3164. "http",
  3165. "http-client",
  3166. "psr",
  3167. "psr-18"
  3168. ],
  3169. "time": "2020-06-29T06:28:15+00:00"
  3170. },
  3171. {
  3172. "name": "psr/http-factory",
  3173. "version": "1.0.1",
  3174. "source": {
  3175. "type": "git",
  3176. "url": "https://github.com/php-fig/http-factory.git",
  3177. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  3178. },
  3179. "dist": {
  3180. "type": "zip",
  3181. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3182. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3183. "shasum": ""
  3184. },
  3185. "require": {
  3186. "php": ">=7.0.0",
  3187. "psr/http-message": "^1.0"
  3188. },
  3189. "type": "library",
  3190. "extra": {
  3191. "branch-alias": {
  3192. "dev-master": "1.0.x-dev"
  3193. }
  3194. },
  3195. "autoload": {
  3196. "psr-4": {
  3197. "Psr\\Http\\Message\\": "src/"
  3198. }
  3199. },
  3200. "notification-url": "https://packagist.org/downloads/",
  3201. "license": [
  3202. "MIT"
  3203. ],
  3204. "authors": [
  3205. {
  3206. "name": "PHP-FIG",
  3207. "homepage": "http://www.php-fig.org/"
  3208. }
  3209. ],
  3210. "description": "Common interfaces for PSR-7 HTTP message factories",
  3211. "keywords": [
  3212. "factory",
  3213. "http",
  3214. "message",
  3215. "psr",
  3216. "psr-17",
  3217. "psr-7",
  3218. "request",
  3219. "response"
  3220. ],
  3221. "time": "2019-04-30T12:38:16+00:00"
  3222. },
  3223. {
  3224. "name": "psr/http-message",
  3225. "version": "1.0.1",
  3226. "source": {
  3227. "type": "git",
  3228. "url": "https://github.com/php-fig/http-message.git",
  3229. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3230. },
  3231. "dist": {
  3232. "type": "zip",
  3233. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3234. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3235. "shasum": ""
  3236. },
  3237. "require": {
  3238. "php": ">=5.3.0"
  3239. },
  3240. "type": "library",
  3241. "extra": {
  3242. "branch-alias": {
  3243. "dev-master": "1.0.x-dev"
  3244. }
  3245. },
  3246. "autoload": {
  3247. "psr-4": {
  3248. "Psr\\Http\\Message\\": "src/"
  3249. }
  3250. },
  3251. "notification-url": "https://packagist.org/downloads/",
  3252. "license": [
  3253. "MIT"
  3254. ],
  3255. "authors": [
  3256. {
  3257. "name": "PHP-FIG",
  3258. "homepage": "http://www.php-fig.org/"
  3259. }
  3260. ],
  3261. "description": "Common interface for HTTP messages",
  3262. "homepage": "https://github.com/php-fig/http-message",
  3263. "keywords": [
  3264. "http",
  3265. "http-message",
  3266. "psr",
  3267. "psr-7",
  3268. "request",
  3269. "response"
  3270. ],
  3271. "time": "2016-08-06T14:39:51+00:00"
  3272. },
  3273. {
  3274. "name": "psr/log",
  3275. "version": "1.1.3",
  3276. "source": {
  3277. "type": "git",
  3278. "url": "https://github.com/php-fig/log.git",
  3279. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  3280. },
  3281. "dist": {
  3282. "type": "zip",
  3283. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  3284. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  3285. "shasum": ""
  3286. },
  3287. "require": {
  3288. "php": ">=5.3.0"
  3289. },
  3290. "type": "library",
  3291. "extra": {
  3292. "branch-alias": {
  3293. "dev-master": "1.1.x-dev"
  3294. }
  3295. },
  3296. "autoload": {
  3297. "psr-4": {
  3298. "Psr\\Log\\": "Psr/Log/"
  3299. }
  3300. },
  3301. "notification-url": "https://packagist.org/downloads/",
  3302. "license": [
  3303. "MIT"
  3304. ],
  3305. "authors": [
  3306. {
  3307. "name": "PHP-FIG",
  3308. "homepage": "http://www.php-fig.org/"
  3309. }
  3310. ],
  3311. "description": "Common interface for logging libraries",
  3312. "homepage": "https://github.com/php-fig/log",
  3313. "keywords": [
  3314. "log",
  3315. "psr",
  3316. "psr-3"
  3317. ],
  3318. "time": "2020-03-23T09:12:05+00:00"
  3319. },
  3320. {
  3321. "name": "psr/simple-cache",
  3322. "version": "1.0.1",
  3323. "source": {
  3324. "type": "git",
  3325. "url": "https://github.com/php-fig/simple-cache.git",
  3326. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3327. },
  3328. "dist": {
  3329. "type": "zip",
  3330. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3331. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3332. "shasum": ""
  3333. },
  3334. "require": {
  3335. "php": ">=5.3.0"
  3336. },
  3337. "type": "library",
  3338. "extra": {
  3339. "branch-alias": {
  3340. "dev-master": "1.0.x-dev"
  3341. }
  3342. },
  3343. "autoload": {
  3344. "psr-4": {
  3345. "Psr\\SimpleCache\\": "src/"
  3346. }
  3347. },
  3348. "notification-url": "https://packagist.org/downloads/",
  3349. "license": [
  3350. "MIT"
  3351. ],
  3352. "authors": [
  3353. {
  3354. "name": "PHP-FIG",
  3355. "homepage": "http://www.php-fig.org/"
  3356. }
  3357. ],
  3358. "description": "Common interfaces for simple caching",
  3359. "keywords": [
  3360. "cache",
  3361. "caching",
  3362. "psr",
  3363. "psr-16",
  3364. "simple-cache"
  3365. ],
  3366. "time": "2017-10-23T01:57:42+00:00"
  3367. },
  3368. {
  3369. "name": "psy/psysh",
  3370. "version": "v0.10.4",
  3371. "source": {
  3372. "type": "git",
  3373. "url": "https://github.com/bobthecow/psysh.git",
  3374. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560"
  3375. },
  3376. "dist": {
  3377. "type": "zip",
  3378. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560",
  3379. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560",
  3380. "shasum": ""
  3381. },
  3382. "require": {
  3383. "dnoegel/php-xdg-base-dir": "0.1.*",
  3384. "ext-json": "*",
  3385. "ext-tokenizer": "*",
  3386. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  3387. "php": "^8.0 || ^7.0 || ^5.5.9",
  3388. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  3389. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  3390. },
  3391. "require-dev": {
  3392. "bamarni/composer-bin-plugin": "^1.2",
  3393. "hoa/console": "3.17.*"
  3394. },
  3395. "suggest": {
  3396. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3397. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3398. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  3399. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  3400. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  3401. },
  3402. "bin": [
  3403. "bin/psysh"
  3404. ],
  3405. "type": "library",
  3406. "extra": {
  3407. "branch-alias": {
  3408. "dev-master": "0.10.x-dev"
  3409. }
  3410. },
  3411. "autoload": {
  3412. "files": [
  3413. "src/functions.php"
  3414. ],
  3415. "psr-4": {
  3416. "Psy\\": "src/"
  3417. }
  3418. },
  3419. "notification-url": "https://packagist.org/downloads/",
  3420. "license": [
  3421. "MIT"
  3422. ],
  3423. "authors": [
  3424. {
  3425. "name": "Justin Hileman",
  3426. "email": "justin@justinhileman.info",
  3427. "homepage": "http://justinhileman.com"
  3428. }
  3429. ],
  3430. "description": "An interactive shell for modern PHP.",
  3431. "homepage": "http://psysh.org",
  3432. "keywords": [
  3433. "REPL",
  3434. "console",
  3435. "interactive",
  3436. "shell"
  3437. ],
  3438. "time": "2020-05-03T19:32:03+00:00"
  3439. },
  3440. {
  3441. "name": "ralouphie/getallheaders",
  3442. "version": "3.0.3",
  3443. "source": {
  3444. "type": "git",
  3445. "url": "https://github.com/ralouphie/getallheaders.git",
  3446. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3447. },
  3448. "dist": {
  3449. "type": "zip",
  3450. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3451. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3452. "shasum": ""
  3453. },
  3454. "require": {
  3455. "php": ">=5.6"
  3456. },
  3457. "require-dev": {
  3458. "php-coveralls/php-coveralls": "^2.1",
  3459. "phpunit/phpunit": "^5 || ^6.5"
  3460. },
  3461. "type": "library",
  3462. "autoload": {
  3463. "files": [
  3464. "src/getallheaders.php"
  3465. ]
  3466. },
  3467. "notification-url": "https://packagist.org/downloads/",
  3468. "license": [
  3469. "MIT"
  3470. ],
  3471. "authors": [
  3472. {
  3473. "name": "Ralph Khattar",
  3474. "email": "ralph.khattar@gmail.com"
  3475. }
  3476. ],
  3477. "description": "A polyfill for getallheaders.",
  3478. "time": "2019-03-08T08:55:37+00:00"
  3479. },
  3480. {
  3481. "name": "ramsey/collection",
  3482. "version": "1.1.1",
  3483. "source": {
  3484. "type": "git",
  3485. "url": "https://github.com/ramsey/collection.git",
  3486. "reference": "24d93aefb2cd786b7edd9f45b554aea20b28b9b1"
  3487. },
  3488. "dist": {
  3489. "type": "zip",
  3490. "url": "https://api.github.com/repos/ramsey/collection/zipball/24d93aefb2cd786b7edd9f45b554aea20b28b9b1",
  3491. "reference": "24d93aefb2cd786b7edd9f45b554aea20b28b9b1",
  3492. "shasum": ""
  3493. },
  3494. "require": {
  3495. "php": "^7.2 || ^8"
  3496. },
  3497. "require-dev": {
  3498. "captainhook/captainhook": "^5.3",
  3499. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  3500. "ergebnis/composer-normalize": "^2.6",
  3501. "fzaninotto/faker": "^1.5",
  3502. "hamcrest/hamcrest-php": "^2",
  3503. "jangregor/phpstan-prophecy": "^0.6",
  3504. "mockery/mockery": "^1.3",
  3505. "phpstan/extension-installer": "^1",
  3506. "phpstan/phpstan": "^0.12.32",
  3507. "phpstan/phpstan-mockery": "^0.12.5",
  3508. "phpstan/phpstan-phpunit": "^0.12.11",
  3509. "phpunit/phpunit": "^8.5",
  3510. "psy/psysh": "^0.10.4",
  3511. "slevomat/coding-standard": "^6.3",
  3512. "squizlabs/php_codesniffer": "^3.5",
  3513. "vimeo/psalm": "^3.12.2"
  3514. },
  3515. "type": "library",
  3516. "autoload": {
  3517. "psr-4": {
  3518. "Ramsey\\Collection\\": "src/"
  3519. }
  3520. },
  3521. "notification-url": "https://packagist.org/downloads/",
  3522. "license": [
  3523. "MIT"
  3524. ],
  3525. "authors": [
  3526. {
  3527. "name": "Ben Ramsey",
  3528. "email": "ben@benramsey.com",
  3529. "homepage": "https://benramsey.com"
  3530. }
  3531. ],
  3532. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  3533. "keywords": [
  3534. "array",
  3535. "collection",
  3536. "hash",
  3537. "map",
  3538. "queue",
  3539. "set"
  3540. ],
  3541. "support": {
  3542. "issues": "https://github.com/ramsey/collection/issues",
  3543. "source": "https://github.com/ramsey/collection/tree/1.1.1"
  3544. },
  3545. "funding": [
  3546. {
  3547. "url": "https://github.com/ramsey",
  3548. "type": "github"
  3549. }
  3550. ],
  3551. "time": "2020-09-10T20:58:17+00:00"
  3552. },
  3553. {
  3554. "name": "ramsey/uuid",
  3555. "version": "4.1.1",
  3556. "source": {
  3557. "type": "git",
  3558. "url": "https://github.com/ramsey/uuid.git",
  3559. "reference": "cd4032040a750077205918c86049aa0f43d22947"
  3560. },
  3561. "dist": {
  3562. "type": "zip",
  3563. "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
  3564. "reference": "cd4032040a750077205918c86049aa0f43d22947",
  3565. "shasum": ""
  3566. },
  3567. "require": {
  3568. "brick/math": "^0.8 || ^0.9",
  3569. "ext-json": "*",
  3570. "php": "^7.2 || ^8",
  3571. "ramsey/collection": "^1.0",
  3572. "symfony/polyfill-ctype": "^1.8"
  3573. },
  3574. "replace": {
  3575. "rhumsaa/uuid": "self.version"
  3576. },
  3577. "require-dev": {
  3578. "codeception/aspect-mock": "^3",
  3579. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  3580. "doctrine/annotations": "^1.8",
  3581. "goaop/framework": "^2",
  3582. "mockery/mockery": "^1.3",
  3583. "moontoast/math": "^1.1",
  3584. "paragonie/random-lib": "^2",
  3585. "php-mock/php-mock-mockery": "^1.3",
  3586. "php-mock/php-mock-phpunit": "^2.5",
  3587. "php-parallel-lint/php-parallel-lint": "^1.1",
  3588. "phpbench/phpbench": "^0.17.1",
  3589. "phpstan/extension-installer": "^1.0",
  3590. "phpstan/phpstan": "^0.12",
  3591. "phpstan/phpstan-mockery": "^0.12",
  3592. "phpstan/phpstan-phpunit": "^0.12",
  3593. "phpunit/phpunit": "^8.5",
  3594. "psy/psysh": "^0.10.0",
  3595. "slevomat/coding-standard": "^6.0",
  3596. "squizlabs/php_codesniffer": "^3.5",
  3597. "vimeo/psalm": "3.9.4"
  3598. },
  3599. "suggest": {
  3600. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  3601. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  3602. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  3603. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  3604. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  3605. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  3606. },
  3607. "type": "library",
  3608. "extra": {
  3609. "branch-alias": {
  3610. "dev-master": "4.x-dev"
  3611. }
  3612. },
  3613. "autoload": {
  3614. "psr-4": {
  3615. "Ramsey\\Uuid\\": "src/"
  3616. },
  3617. "files": [
  3618. "src/functions.php"
  3619. ]
  3620. },
  3621. "notification-url": "https://packagist.org/downloads/",
  3622. "license": [
  3623. "MIT"
  3624. ],
  3625. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  3626. "homepage": "https://github.com/ramsey/uuid",
  3627. "keywords": [
  3628. "guid",
  3629. "identifier",
  3630. "uuid"
  3631. ],
  3632. "funding": [
  3633. {
  3634. "url": "https://github.com/ramsey",
  3635. "type": "github"
  3636. }
  3637. ],
  3638. "time": "2020-08-18T17:17:46+00:00"
  3639. },
  3640. {
  3641. "name": "rap2hpoutre/laravel-log-viewer",
  3642. "version": "v1.7.0",
  3643. "source": {
  3644. "type": "git",
  3645. "url": "https://github.com/rap2hpoutre/laravel-log-viewer.git",
  3646. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a"
  3647. },
  3648. "dist": {
  3649. "type": "zip",
  3650. "url": "https://api.github.com/repos/rap2hpoutre/laravel-log-viewer/zipball/27392d29234b6ff38a456454558f4bcc40cc837a",
  3651. "reference": "27392d29234b6ff38a456454558f4bcc40cc837a",
  3652. "shasum": ""
  3653. },
  3654. "require": {
  3655. "illuminate/support": "4.2.*|5.*|^6.0|^7.0|^8.0",
  3656. "php": ">=5.4.0"
  3657. },
  3658. "require-dev": {
  3659. "orchestra/testbench": "3.7.*",
  3660. "phpunit/phpunit": "^7"
  3661. },
  3662. "type": "laravel-package",
  3663. "extra": {
  3664. "laravel": {
  3665. "providers": [
  3666. "Rap2hpoutre\\LaravelLogViewer\\LaravelLogViewerServiceProvider"
  3667. ]
  3668. }
  3669. },
  3670. "autoload": {
  3671. "classmap": [
  3672. "src/controllers"
  3673. ],
  3674. "psr-0": {
  3675. "Rap2hpoutre\\LaravelLogViewer\\": "src/"
  3676. }
  3677. },
  3678. "notification-url": "https://packagist.org/downloads/",
  3679. "license": [
  3680. "MIT"
  3681. ],
  3682. "authors": [
  3683. {
  3684. "name": "rap2hpoutre",
  3685. "email": "raphaelht@gmail.com"
  3686. }
  3687. ],
  3688. "description": "A Laravel log reader",
  3689. "keywords": [
  3690. "laravel",
  3691. "log",
  3692. "log-reader",
  3693. "log-viewer",
  3694. "logging",
  3695. "lumen"
  3696. ],
  3697. "support": {
  3698. "issues": "https://github.com/rap2hpoutre/laravel-log-viewer/issues",
  3699. "source": "https://github.com/rap2hpoutre/laravel-log-viewer/tree/master"
  3700. },
  3701. "time": "2020-09-08T12:21:27+00:00"
  3702. },
  3703. {
  3704. "name": "riverslei/payment",
  3705. "version": "v5.1.0",
  3706. "source": {
  3707. "type": "git",
  3708. "url": "https://github.com/helei112g/payment.git",
  3709. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa"
  3710. },
  3711. "dist": {
  3712. "type": "zip",
  3713. "url": "https://api.github.com/repos/helei112g/payment/zipball/77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  3714. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  3715. "shasum": ""
  3716. },
  3717. "require": {
  3718. "ext-bcmath": "*",
  3719. "ext-json": "*",
  3720. "ext-mbstring": "*",
  3721. "ext-openssl": "*",
  3722. "ext-simplexml": "*",
  3723. "ext-xml": "*",
  3724. "guzzlehttp/guzzle": "~6.0",
  3725. "php": ">=7.0"
  3726. },
  3727. "require-dev": {
  3728. "codeception/codeception": "*"
  3729. },
  3730. "type": "library",
  3731. "autoload": {
  3732. "psr-4": {
  3733. "Payment\\": "src/"
  3734. }
  3735. },
  3736. "notification-url": "https://packagist.org/downloads/",
  3737. "license": [
  3738. "MIT"
  3739. ],
  3740. "authors": [
  3741. {
  3742. "name": "Leo",
  3743. "email": "dayugog@gmail.com",
  3744. "homepage": "https://dayutalk.cn"
  3745. }
  3746. ],
  3747. "description": "支付宝支付、微信支付、招商一网通支付php SDK。方便快速接入,最完整的开源支付 php sdk",
  3748. "homepage": "http://helei112g.github.io/payment",
  3749. "keywords": [
  3750. "alipay",
  3751. "weixin",
  3752. "一网通",
  3753. "微信支付",
  3754. "招商一网通",
  3755. "支付宝支付",
  3756. "集成支付接口SDK"
  3757. ],
  3758. "time": "2020-05-04T03:07:17+00:00"
  3759. },
  3760. {
  3761. "name": "simplesoftwareio/simple-qrcode",
  3762. "version": "3.0.0",
  3763. "source": {
  3764. "type": "git",
  3765. "url": "https://github.com/SimpleSoftwareIO/simple-qrcode.git",
  3766. "reference": "151dd397426d9a6c0507c96e61ddd2ca1290ce1e"
  3767. },
  3768. "dist": {
  3769. "type": "zip",
  3770. "url": "https://api.github.com/repos/SimpleSoftwareIO/simple-qrcode/zipball/151dd397426d9a6c0507c96e61ddd2ca1290ce1e",
  3771. "reference": "151dd397426d9a6c0507c96e61ddd2ca1290ce1e",
  3772. "shasum": ""
  3773. },
  3774. "require": {
  3775. "bacon/bacon-qr-code": "2.0.0",
  3776. "ext-gd": "*",
  3777. "php": ">=7.2"
  3778. },
  3779. "require-dev": {
  3780. "mockery/mockery": "~1",
  3781. "phpunit/phpunit": "~9"
  3782. },
  3783. "suggest": {
  3784. "ext-imagick": "Allows the generation of PNG QrCodes.",
  3785. "illuminate/support": "Allows for use within Laravel."
  3786. },
  3787. "type": "library",
  3788. "extra": {
  3789. "laravel": {
  3790. "providers": [
  3791. "SimpleSoftwareIO\\QrCode\\ServiceProvider"
  3792. ],
  3793. "aliases": {
  3794. "QrCode": "SimpleSoftwareIO\\QrCode\\Facade"
  3795. }
  3796. }
  3797. },
  3798. "autoload": {
  3799. "psr-4": {
  3800. "SimpleSoftwareIO\\QrCode\\": "src"
  3801. }
  3802. },
  3803. "notification-url": "https://packagist.org/downloads/",
  3804. "license": [
  3805. "MIT"
  3806. ],
  3807. "authors": [
  3808. {
  3809. "name": "Simple Software LLC",
  3810. "email": "support@simplesoftware.io"
  3811. }
  3812. ],
  3813. "description": "Simple QrCode is a QR code generator made for Laravel.",
  3814. "homepage": "http://www.simplesoftware.io",
  3815. "keywords": [
  3816. "Simple",
  3817. "generator",
  3818. "laravel",
  3819. "qrcode",
  3820. "wrapper"
  3821. ],
  3822. "time": "2020-06-02T20:41:21+00:00"
  3823. },
  3824. {
  3825. "name": "spatie/laravel-permission",
  3826. "version": "3.17.0",
  3827. "source": {
  3828. "type": "git",
  3829. "url": "https://github.com/spatie/laravel-permission.git",
  3830. "reference": "35d40a45e49f5713f477823b571e05ef6a3a0394"
  3831. },
  3832. "dist": {
  3833. "type": "zip",
  3834. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/35d40a45e49f5713f477823b571e05ef6a3a0394",
  3835. "reference": "35d40a45e49f5713f477823b571e05ef6a3a0394",
  3836. "shasum": ""
  3837. },
  3838. "require": {
  3839. "illuminate/auth": "^5.8|^6.0|^7.0|^8.0",
  3840. "illuminate/container": "^5.8|^6.0|^7.0|^8.0",
  3841. "illuminate/contracts": "^5.8|^6.0|^7.0|^8.0",
  3842. "illuminate/database": "^5.8|^6.0|^7.0|^8.0",
  3843. "php": "^7.2.5"
  3844. },
  3845. "require-dev": {
  3846. "orchestra/testbench": "^3.8|^4.0|^5.0|^6.0",
  3847. "phpunit/phpunit": "^8.0|^9.0",
  3848. "predis/predis": "^1.1"
  3849. },
  3850. "type": "library",
  3851. "extra": {
  3852. "laravel": {
  3853. "providers": [
  3854. "Spatie\\Permission\\PermissionServiceProvider"
  3855. ]
  3856. }
  3857. },
  3858. "autoload": {
  3859. "psr-4": {
  3860. "Spatie\\Permission\\": "src"
  3861. },
  3862. "files": [
  3863. "src/helpers.php"
  3864. ]
  3865. },
  3866. "notification-url": "https://packagist.org/downloads/",
  3867. "license": [
  3868. "MIT"
  3869. ],
  3870. "authors": [
  3871. {
  3872. "name": "Freek Van der Herten",
  3873. "email": "freek@spatie.be",
  3874. "homepage": "https://spatie.be",
  3875. "role": "Developer"
  3876. }
  3877. ],
  3878. "description": "Permission handling for Laravel 5.8 and up",
  3879. "homepage": "https://github.com/spatie/laravel-permission",
  3880. "keywords": [
  3881. "acl",
  3882. "laravel",
  3883. "permission",
  3884. "permissions",
  3885. "rbac",
  3886. "roles",
  3887. "security",
  3888. "spatie"
  3889. ],
  3890. "funding": [
  3891. {
  3892. "url": "https://spatie.be/open-source/support-us",
  3893. "type": "custom"
  3894. }
  3895. ],
  3896. "time": "2020-09-16T16:47:18+00:00"
  3897. },
  3898. {
  3899. "name": "srmklive/paypal",
  3900. "version": "1.8.0",
  3901. "source": {
  3902. "type": "git",
  3903. "url": "https://github.com/srmklive/laravel-paypal.git",
  3904. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb"
  3905. },
  3906. "dist": {
  3907. "type": "zip",
  3908. "url": "https://api.github.com/repos/srmklive/laravel-paypal/zipball/0c2ae237577f62396d474674cb40f82825a41ffb",
  3909. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb",
  3910. "shasum": ""
  3911. },
  3912. "require": {
  3913. "guzzlehttp/guzzle": "~6.0|~7.0",
  3914. "illuminate/support": "~5.1|~5.2|~5.3|~5.4|~5.5|~5.6|~5.7|~5.8|~6.0|~7.0|~8.0",
  3915. "nesbot/carbon": "~1.0|~2.0"
  3916. },
  3917. "type": "library",
  3918. "extra": {
  3919. "laravel": {
  3920. "providers": [
  3921. "Srmklive\\PayPal\\Providers\\PayPalServiceProvider"
  3922. ],
  3923. "aliases": {
  3924. "PayPal": "Srmklive\\PayPal\\Facades\\PayPal"
  3925. }
  3926. }
  3927. },
  3928. "autoload": {
  3929. "psr-4": {
  3930. "Srmklive\\PayPal\\": "src/"
  3931. }
  3932. },
  3933. "notification-url": "https://packagist.org/downloads/",
  3934. "license": [
  3935. "MIT"
  3936. ],
  3937. "authors": [
  3938. {
  3939. "name": "Raza Mehdi",
  3940. "email": "srmk@outlook.com"
  3941. }
  3942. ],
  3943. "description": "Laravel plugin For Processing Payments Through Paypal Express Checkout. Can Be Used Independently With Other Applications.",
  3944. "keywords": [
  3945. "http",
  3946. "laravel paypal",
  3947. "paypal",
  3948. "rest",
  3949. "web service"
  3950. ],
  3951. "time": "2020-09-03T07:50:08+00:00"
  3952. },
  3953. {
  3954. "name": "swiftmailer/swiftmailer",
  3955. "version": "v6.2.3",
  3956. "source": {
  3957. "type": "git",
  3958. "url": "https://github.com/swiftmailer/swiftmailer.git",
  3959. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9"
  3960. },
  3961. "dist": {
  3962. "type": "zip",
  3963. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  3964. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  3965. "shasum": ""
  3966. },
  3967. "require": {
  3968. "egulias/email-validator": "~2.0",
  3969. "php": ">=7.0.0",
  3970. "symfony/polyfill-iconv": "^1.0",
  3971. "symfony/polyfill-intl-idn": "^1.10",
  3972. "symfony/polyfill-mbstring": "^1.0"
  3973. },
  3974. "require-dev": {
  3975. "mockery/mockery": "~0.9.1",
  3976. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  3977. },
  3978. "suggest": {
  3979. "ext-intl": "Needed to support internationalized email addresses",
  3980. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  3981. },
  3982. "type": "library",
  3983. "extra": {
  3984. "branch-alias": {
  3985. "dev-master": "6.2-dev"
  3986. }
  3987. },
  3988. "autoload": {
  3989. "files": [
  3990. "lib/swift_required.php"
  3991. ]
  3992. },
  3993. "notification-url": "https://packagist.org/downloads/",
  3994. "license": [
  3995. "MIT"
  3996. ],
  3997. "authors": [
  3998. {
  3999. "name": "Chris Corbyn"
  4000. },
  4001. {
  4002. "name": "Fabien Potencier",
  4003. "email": "fabien@symfony.com"
  4004. }
  4005. ],
  4006. "description": "Swiftmailer, free feature-rich PHP mailer",
  4007. "homepage": "https://swiftmailer.symfony.com",
  4008. "keywords": [
  4009. "email",
  4010. "mail",
  4011. "mailer"
  4012. ],
  4013. "time": "2019-11-12T09:31:26+00:00"
  4014. },
  4015. {
  4016. "name": "symfony/console",
  4017. "version": "v5.1.6",
  4018. "source": {
  4019. "type": "git",
  4020. "url": "https://github.com/symfony/console.git",
  4021. "reference": "04c3a31fe8ea94b42c9e2d1acc93d19782133b00"
  4022. },
  4023. "dist": {
  4024. "type": "zip",
  4025. "url": "https://api.github.com/repos/symfony/console/zipball/04c3a31fe8ea94b42c9e2d1acc93d19782133b00",
  4026. "reference": "04c3a31fe8ea94b42c9e2d1acc93d19782133b00",
  4027. "shasum": ""
  4028. },
  4029. "require": {
  4030. "php": ">=7.2.5",
  4031. "symfony/polyfill-mbstring": "~1.0",
  4032. "symfony/polyfill-php73": "^1.8",
  4033. "symfony/polyfill-php80": "^1.15",
  4034. "symfony/service-contracts": "^1.1|^2",
  4035. "symfony/string": "^5.1"
  4036. },
  4037. "conflict": {
  4038. "symfony/dependency-injection": "<4.4",
  4039. "symfony/dotenv": "<5.1",
  4040. "symfony/event-dispatcher": "<4.4",
  4041. "symfony/lock": "<4.4",
  4042. "symfony/process": "<4.4"
  4043. },
  4044. "provide": {
  4045. "psr/log-implementation": "1.0"
  4046. },
  4047. "require-dev": {
  4048. "psr/log": "~1.0",
  4049. "symfony/config": "^4.4|^5.0",
  4050. "symfony/dependency-injection": "^4.4|^5.0",
  4051. "symfony/event-dispatcher": "^4.4|^5.0",
  4052. "symfony/lock": "^4.4|^5.0",
  4053. "symfony/process": "^4.4|^5.0",
  4054. "symfony/var-dumper": "^4.4|^5.0"
  4055. },
  4056. "suggest": {
  4057. "psr/log": "For using the console logger",
  4058. "symfony/event-dispatcher": "",
  4059. "symfony/lock": "",
  4060. "symfony/process": ""
  4061. },
  4062. "type": "library",
  4063. "extra": {
  4064. "branch-alias": {
  4065. "dev-master": "5.1-dev"
  4066. }
  4067. },
  4068. "autoload": {
  4069. "psr-4": {
  4070. "Symfony\\Component\\Console\\": ""
  4071. },
  4072. "exclude-from-classmap": [
  4073. "/Tests/"
  4074. ]
  4075. },
  4076. "notification-url": "https://packagist.org/downloads/",
  4077. "license": [
  4078. "MIT"
  4079. ],
  4080. "authors": [
  4081. {
  4082. "name": "Fabien Potencier",
  4083. "email": "fabien@symfony.com"
  4084. },
  4085. {
  4086. "name": "Symfony Community",
  4087. "homepage": "https://symfony.com/contributors"
  4088. }
  4089. ],
  4090. "description": "Symfony Console Component",
  4091. "homepage": "https://symfony.com",
  4092. "funding": [
  4093. {
  4094. "url": "https://symfony.com/sponsor",
  4095. "type": "custom"
  4096. },
  4097. {
  4098. "url": "https://github.com/fabpot",
  4099. "type": "github"
  4100. },
  4101. {
  4102. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4103. "type": "tidelift"
  4104. }
  4105. ],
  4106. "time": "2020-09-18T14:27:32+00:00"
  4107. },
  4108. {
  4109. "name": "symfony/css-selector",
  4110. "version": "v5.1.6",
  4111. "source": {
  4112. "type": "git",
  4113. "url": "https://github.com/symfony/css-selector.git",
  4114. "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9"
  4115. },
  4116. "dist": {
  4117. "type": "zip",
  4118. "url": "https://api.github.com/repos/symfony/css-selector/zipball/e544e24472d4c97b2d11ade7caacd446727c6bf9",
  4119. "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9",
  4120. "shasum": ""
  4121. },
  4122. "require": {
  4123. "php": ">=7.2.5"
  4124. },
  4125. "type": "library",
  4126. "extra": {
  4127. "branch-alias": {
  4128. "dev-master": "5.1-dev"
  4129. }
  4130. },
  4131. "autoload": {
  4132. "psr-4": {
  4133. "Symfony\\Component\\CssSelector\\": ""
  4134. },
  4135. "exclude-from-classmap": [
  4136. "/Tests/"
  4137. ]
  4138. },
  4139. "notification-url": "https://packagist.org/downloads/",
  4140. "license": [
  4141. "MIT"
  4142. ],
  4143. "authors": [
  4144. {
  4145. "name": "Fabien Potencier",
  4146. "email": "fabien@symfony.com"
  4147. },
  4148. {
  4149. "name": "Jean-François Simon",
  4150. "email": "jeanfrancois.simon@sensiolabs.com"
  4151. },
  4152. {
  4153. "name": "Symfony Community",
  4154. "homepage": "https://symfony.com/contributors"
  4155. }
  4156. ],
  4157. "description": "Symfony CssSelector Component",
  4158. "homepage": "https://symfony.com",
  4159. "funding": [
  4160. {
  4161. "url": "https://symfony.com/sponsor",
  4162. "type": "custom"
  4163. },
  4164. {
  4165. "url": "https://github.com/fabpot",
  4166. "type": "github"
  4167. },
  4168. {
  4169. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4170. "type": "tidelift"
  4171. }
  4172. ],
  4173. "time": "2020-05-20T17:43:50+00:00"
  4174. },
  4175. {
  4176. "name": "symfony/deprecation-contracts",
  4177. "version": "v2.2.0",
  4178. "source": {
  4179. "type": "git",
  4180. "url": "https://github.com/symfony/deprecation-contracts.git",
  4181. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665"
  4182. },
  4183. "dist": {
  4184. "type": "zip",
  4185. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  4186. "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665",
  4187. "shasum": ""
  4188. },
  4189. "require": {
  4190. "php": ">=7.1"
  4191. },
  4192. "type": "library",
  4193. "extra": {
  4194. "branch-alias": {
  4195. "dev-master": "2.2-dev"
  4196. },
  4197. "thanks": {
  4198. "name": "symfony/contracts",
  4199. "url": "https://github.com/symfony/contracts"
  4200. }
  4201. },
  4202. "autoload": {
  4203. "files": [
  4204. "function.php"
  4205. ]
  4206. },
  4207. "notification-url": "https://packagist.org/downloads/",
  4208. "license": [
  4209. "MIT"
  4210. ],
  4211. "authors": [
  4212. {
  4213. "name": "Nicolas Grekas",
  4214. "email": "p@tchwork.com"
  4215. },
  4216. {
  4217. "name": "Symfony Community",
  4218. "homepage": "https://symfony.com/contributors"
  4219. }
  4220. ],
  4221. "description": "A generic function and convention to trigger deprecation notices",
  4222. "homepage": "https://symfony.com",
  4223. "support": {
  4224. "source": "https://github.com/symfony/deprecation-contracts/tree/master"
  4225. },
  4226. "funding": [
  4227. {
  4228. "url": "https://symfony.com/sponsor",
  4229. "type": "custom"
  4230. },
  4231. {
  4232. "url": "https://github.com/fabpot",
  4233. "type": "github"
  4234. },
  4235. {
  4236. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4237. "type": "tidelift"
  4238. }
  4239. ],
  4240. "time": "2020-09-07T11:33:47+00:00"
  4241. },
  4242. {
  4243. "name": "symfony/error-handler",
  4244. "version": "v5.1.6",
  4245. "source": {
  4246. "type": "git",
  4247. "url": "https://github.com/symfony/error-handler.git",
  4248. "reference": "d2f1d4996d5499f1261164d10080e4120001f041"
  4249. },
  4250. "dist": {
  4251. "type": "zip",
  4252. "url": "https://api.github.com/repos/symfony/error-handler/zipball/d2f1d4996d5499f1261164d10080e4120001f041",
  4253. "reference": "d2f1d4996d5499f1261164d10080e4120001f041",
  4254. "shasum": ""
  4255. },
  4256. "require": {
  4257. "php": ">=7.2.5",
  4258. "psr/log": "^1.0",
  4259. "symfony/polyfill-php80": "^1.15",
  4260. "symfony/var-dumper": "^4.4|^5.0"
  4261. },
  4262. "require-dev": {
  4263. "symfony/deprecation-contracts": "^2.1",
  4264. "symfony/http-kernel": "^4.4|^5.0",
  4265. "symfony/serializer": "^4.4|^5.0"
  4266. },
  4267. "type": "library",
  4268. "extra": {
  4269. "branch-alias": {
  4270. "dev-master": "5.1-dev"
  4271. }
  4272. },
  4273. "autoload": {
  4274. "psr-4": {
  4275. "Symfony\\Component\\ErrorHandler\\": ""
  4276. },
  4277. "exclude-from-classmap": [
  4278. "/Tests/"
  4279. ]
  4280. },
  4281. "notification-url": "https://packagist.org/downloads/",
  4282. "license": [
  4283. "MIT"
  4284. ],
  4285. "authors": [
  4286. {
  4287. "name": "Fabien Potencier",
  4288. "email": "fabien@symfony.com"
  4289. },
  4290. {
  4291. "name": "Symfony Community",
  4292. "homepage": "https://symfony.com/contributors"
  4293. }
  4294. ],
  4295. "description": "Symfony ErrorHandler Component",
  4296. "homepage": "https://symfony.com",
  4297. "funding": [
  4298. {
  4299. "url": "https://symfony.com/sponsor",
  4300. "type": "custom"
  4301. },
  4302. {
  4303. "url": "https://github.com/fabpot",
  4304. "type": "github"
  4305. },
  4306. {
  4307. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4308. "type": "tidelift"
  4309. }
  4310. ],
  4311. "time": "2020-09-27T03:44:28+00:00"
  4312. },
  4313. {
  4314. "name": "symfony/event-dispatcher",
  4315. "version": "v5.1.6",
  4316. "source": {
  4317. "type": "git",
  4318. "url": "https://github.com/symfony/event-dispatcher.git",
  4319. "reference": "d5de97d6af175a9e8131c546db054ca32842dd0f"
  4320. },
  4321. "dist": {
  4322. "type": "zip",
  4323. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/d5de97d6af175a9e8131c546db054ca32842dd0f",
  4324. "reference": "d5de97d6af175a9e8131c546db054ca32842dd0f",
  4325. "shasum": ""
  4326. },
  4327. "require": {
  4328. "php": ">=7.2.5",
  4329. "symfony/deprecation-contracts": "^2.1",
  4330. "symfony/event-dispatcher-contracts": "^2",
  4331. "symfony/polyfill-php80": "^1.15"
  4332. },
  4333. "conflict": {
  4334. "symfony/dependency-injection": "<4.4"
  4335. },
  4336. "provide": {
  4337. "psr/event-dispatcher-implementation": "1.0",
  4338. "symfony/event-dispatcher-implementation": "2.0"
  4339. },
  4340. "require-dev": {
  4341. "psr/log": "~1.0",
  4342. "symfony/config": "^4.4|^5.0",
  4343. "symfony/dependency-injection": "^4.4|^5.0",
  4344. "symfony/error-handler": "^4.4|^5.0",
  4345. "symfony/expression-language": "^4.4|^5.0",
  4346. "symfony/http-foundation": "^4.4|^5.0",
  4347. "symfony/service-contracts": "^1.1|^2",
  4348. "symfony/stopwatch": "^4.4|^5.0"
  4349. },
  4350. "suggest": {
  4351. "symfony/dependency-injection": "",
  4352. "symfony/http-kernel": ""
  4353. },
  4354. "type": "library",
  4355. "extra": {
  4356. "branch-alias": {
  4357. "dev-master": "5.1-dev"
  4358. }
  4359. },
  4360. "autoload": {
  4361. "psr-4": {
  4362. "Symfony\\Component\\EventDispatcher\\": ""
  4363. },
  4364. "exclude-from-classmap": [
  4365. "/Tests/"
  4366. ]
  4367. },
  4368. "notification-url": "https://packagist.org/downloads/",
  4369. "license": [
  4370. "MIT"
  4371. ],
  4372. "authors": [
  4373. {
  4374. "name": "Fabien Potencier",
  4375. "email": "fabien@symfony.com"
  4376. },
  4377. {
  4378. "name": "Symfony Community",
  4379. "homepage": "https://symfony.com/contributors"
  4380. }
  4381. ],
  4382. "description": "Symfony EventDispatcher Component",
  4383. "homepage": "https://symfony.com",
  4384. "funding": [
  4385. {
  4386. "url": "https://symfony.com/sponsor",
  4387. "type": "custom"
  4388. },
  4389. {
  4390. "url": "https://github.com/fabpot",
  4391. "type": "github"
  4392. },
  4393. {
  4394. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4395. "type": "tidelift"
  4396. }
  4397. ],
  4398. "time": "2020-09-18T14:27:32+00:00"
  4399. },
  4400. {
  4401. "name": "symfony/event-dispatcher-contracts",
  4402. "version": "v2.2.0",
  4403. "source": {
  4404. "type": "git",
  4405. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4406. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2"
  4407. },
  4408. "dist": {
  4409. "type": "zip",
  4410. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/0ba7d54483095a198fa51781bc608d17e84dffa2",
  4411. "reference": "0ba7d54483095a198fa51781bc608d17e84dffa2",
  4412. "shasum": ""
  4413. },
  4414. "require": {
  4415. "php": ">=7.2.5",
  4416. "psr/event-dispatcher": "^1"
  4417. },
  4418. "suggest": {
  4419. "symfony/event-dispatcher-implementation": ""
  4420. },
  4421. "type": "library",
  4422. "extra": {
  4423. "branch-alias": {
  4424. "dev-master": "2.2-dev"
  4425. },
  4426. "thanks": {
  4427. "name": "symfony/contracts",
  4428. "url": "https://github.com/symfony/contracts"
  4429. }
  4430. },
  4431. "autoload": {
  4432. "psr-4": {
  4433. "Symfony\\Contracts\\EventDispatcher\\": ""
  4434. }
  4435. },
  4436. "notification-url": "https://packagist.org/downloads/",
  4437. "license": [
  4438. "MIT"
  4439. ],
  4440. "authors": [
  4441. {
  4442. "name": "Nicolas Grekas",
  4443. "email": "p@tchwork.com"
  4444. },
  4445. {
  4446. "name": "Symfony Community",
  4447. "homepage": "https://symfony.com/contributors"
  4448. }
  4449. ],
  4450. "description": "Generic abstractions related to dispatching event",
  4451. "homepage": "https://symfony.com",
  4452. "keywords": [
  4453. "abstractions",
  4454. "contracts",
  4455. "decoupling",
  4456. "interfaces",
  4457. "interoperability",
  4458. "standards"
  4459. ],
  4460. "support": {
  4461. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.2.0"
  4462. },
  4463. "funding": [
  4464. {
  4465. "url": "https://symfony.com/sponsor",
  4466. "type": "custom"
  4467. },
  4468. {
  4469. "url": "https://github.com/fabpot",
  4470. "type": "github"
  4471. },
  4472. {
  4473. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4474. "type": "tidelift"
  4475. }
  4476. ],
  4477. "time": "2020-09-07T11:33:47+00:00"
  4478. },
  4479. {
  4480. "name": "symfony/finder",
  4481. "version": "v5.1.6",
  4482. "source": {
  4483. "type": "git",
  4484. "url": "https://github.com/symfony/finder.git",
  4485. "reference": "2c3ba7ad6884e6c4451ce2340e2dc23f6fa3e0d8"
  4486. },
  4487. "dist": {
  4488. "type": "zip",
  4489. "url": "https://api.github.com/repos/symfony/finder/zipball/2c3ba7ad6884e6c4451ce2340e2dc23f6fa3e0d8",
  4490. "reference": "2c3ba7ad6884e6c4451ce2340e2dc23f6fa3e0d8",
  4491. "shasum": ""
  4492. },
  4493. "require": {
  4494. "php": ">=7.2.5"
  4495. },
  4496. "type": "library",
  4497. "extra": {
  4498. "branch-alias": {
  4499. "dev-master": "5.1-dev"
  4500. }
  4501. },
  4502. "autoload": {
  4503. "psr-4": {
  4504. "Symfony\\Component\\Finder\\": ""
  4505. },
  4506. "exclude-from-classmap": [
  4507. "/Tests/"
  4508. ]
  4509. },
  4510. "notification-url": "https://packagist.org/downloads/",
  4511. "license": [
  4512. "MIT"
  4513. ],
  4514. "authors": [
  4515. {
  4516. "name": "Fabien Potencier",
  4517. "email": "fabien@symfony.com"
  4518. },
  4519. {
  4520. "name": "Symfony Community",
  4521. "homepage": "https://symfony.com/contributors"
  4522. }
  4523. ],
  4524. "description": "Symfony Finder Component",
  4525. "homepage": "https://symfony.com",
  4526. "funding": [
  4527. {
  4528. "url": "https://symfony.com/sponsor",
  4529. "type": "custom"
  4530. },
  4531. {
  4532. "url": "https://github.com/fabpot",
  4533. "type": "github"
  4534. },
  4535. {
  4536. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4537. "type": "tidelift"
  4538. }
  4539. ],
  4540. "time": "2020-09-02T16:23:27+00:00"
  4541. },
  4542. {
  4543. "name": "symfony/http-client-contracts",
  4544. "version": "v2.2.0",
  4545. "source": {
  4546. "type": "git",
  4547. "url": "https://github.com/symfony/http-client-contracts.git",
  4548. "reference": "3a5d0fe7908daaa23e3dbf4cee3ba4bfbb19fdd3"
  4549. },
  4550. "dist": {
  4551. "type": "zip",
  4552. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/3a5d0fe7908daaa23e3dbf4cee3ba4bfbb19fdd3",
  4553. "reference": "3a5d0fe7908daaa23e3dbf4cee3ba4bfbb19fdd3",
  4554. "shasum": ""
  4555. },
  4556. "require": {
  4557. "php": ">=7.2.5"
  4558. },
  4559. "suggest": {
  4560. "symfony/http-client-implementation": ""
  4561. },
  4562. "type": "library",
  4563. "extra": {
  4564. "branch-alias": {
  4565. "dev-master": "2.2-dev"
  4566. },
  4567. "thanks": {
  4568. "name": "symfony/contracts",
  4569. "url": "https://github.com/symfony/contracts"
  4570. }
  4571. },
  4572. "autoload": {
  4573. "psr-4": {
  4574. "Symfony\\Contracts\\HttpClient\\": ""
  4575. }
  4576. },
  4577. "notification-url": "https://packagist.org/downloads/",
  4578. "license": [
  4579. "MIT"
  4580. ],
  4581. "authors": [
  4582. {
  4583. "name": "Nicolas Grekas",
  4584. "email": "p@tchwork.com"
  4585. },
  4586. {
  4587. "name": "Symfony Community",
  4588. "homepage": "https://symfony.com/contributors"
  4589. }
  4590. ],
  4591. "description": "Generic abstractions related to HTTP clients",
  4592. "homepage": "https://symfony.com",
  4593. "keywords": [
  4594. "abstractions",
  4595. "contracts",
  4596. "decoupling",
  4597. "interfaces",
  4598. "interoperability",
  4599. "standards"
  4600. ],
  4601. "funding": [
  4602. {
  4603. "url": "https://symfony.com/sponsor",
  4604. "type": "custom"
  4605. },
  4606. {
  4607. "url": "https://github.com/fabpot",
  4608. "type": "github"
  4609. },
  4610. {
  4611. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4612. "type": "tidelift"
  4613. }
  4614. ],
  4615. "time": "2020-09-07T11:33:47+00:00"
  4616. },
  4617. {
  4618. "name": "symfony/http-foundation",
  4619. "version": "v5.1.6",
  4620. "source": {
  4621. "type": "git",
  4622. "url": "https://github.com/symfony/http-foundation.git",
  4623. "reference": "6cca6b2e4b69fc5bace160d14cf1ee5f71483db4"
  4624. },
  4625. "dist": {
  4626. "type": "zip",
  4627. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/6cca6b2e4b69fc5bace160d14cf1ee5f71483db4",
  4628. "reference": "6cca6b2e4b69fc5bace160d14cf1ee5f71483db4",
  4629. "shasum": ""
  4630. },
  4631. "require": {
  4632. "php": ">=7.2.5",
  4633. "symfony/deprecation-contracts": "^2.1",
  4634. "symfony/polyfill-mbstring": "~1.1",
  4635. "symfony/polyfill-php80": "^1.15"
  4636. },
  4637. "require-dev": {
  4638. "predis/predis": "~1.0",
  4639. "symfony/cache": "^4.4|^5.0",
  4640. "symfony/expression-language": "^4.4|^5.0",
  4641. "symfony/mime": "^4.4|^5.0"
  4642. },
  4643. "suggest": {
  4644. "symfony/mime": "To use the file extension guesser"
  4645. },
  4646. "type": "library",
  4647. "extra": {
  4648. "branch-alias": {
  4649. "dev-master": "5.1-dev"
  4650. }
  4651. },
  4652. "autoload": {
  4653. "psr-4": {
  4654. "Symfony\\Component\\HttpFoundation\\": ""
  4655. },
  4656. "exclude-from-classmap": [
  4657. "/Tests/"
  4658. ]
  4659. },
  4660. "notification-url": "https://packagist.org/downloads/",
  4661. "license": [
  4662. "MIT"
  4663. ],
  4664. "authors": [
  4665. {
  4666. "name": "Fabien Potencier",
  4667. "email": "fabien@symfony.com"
  4668. },
  4669. {
  4670. "name": "Symfony Community",
  4671. "homepage": "https://symfony.com/contributors"
  4672. }
  4673. ],
  4674. "description": "Symfony HttpFoundation Component",
  4675. "homepage": "https://symfony.com",
  4676. "funding": [
  4677. {
  4678. "url": "https://symfony.com/sponsor",
  4679. "type": "custom"
  4680. },
  4681. {
  4682. "url": "https://github.com/fabpot",
  4683. "type": "github"
  4684. },
  4685. {
  4686. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4687. "type": "tidelift"
  4688. }
  4689. ],
  4690. "time": "2020-09-13T05:01:27+00:00"
  4691. },
  4692. {
  4693. "name": "symfony/http-kernel",
  4694. "version": "v5.1.6",
  4695. "source": {
  4696. "type": "git",
  4697. "url": "https://github.com/symfony/http-kernel.git",
  4698. "reference": "17227644c3c66dcf32bdfeceff4364d090cd6756"
  4699. },
  4700. "dist": {
  4701. "type": "zip",
  4702. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/17227644c3c66dcf32bdfeceff4364d090cd6756",
  4703. "reference": "17227644c3c66dcf32bdfeceff4364d090cd6756",
  4704. "shasum": ""
  4705. },
  4706. "require": {
  4707. "php": ">=7.2.5",
  4708. "psr/log": "~1.0",
  4709. "symfony/deprecation-contracts": "^2.1",
  4710. "symfony/error-handler": "^4.4|^5.0",
  4711. "symfony/event-dispatcher": "^5.0",
  4712. "symfony/http-client-contracts": "^1.1|^2",
  4713. "symfony/http-foundation": "^4.4|^5.0",
  4714. "symfony/polyfill-ctype": "^1.8",
  4715. "symfony/polyfill-php73": "^1.9",
  4716. "symfony/polyfill-php80": "^1.15"
  4717. },
  4718. "conflict": {
  4719. "symfony/browser-kit": "<4.4",
  4720. "symfony/cache": "<5.0",
  4721. "symfony/config": "<5.0",
  4722. "symfony/console": "<4.4",
  4723. "symfony/dependency-injection": "<4.4",
  4724. "symfony/doctrine-bridge": "<5.0",
  4725. "symfony/form": "<5.0",
  4726. "symfony/http-client": "<5.0",
  4727. "symfony/mailer": "<5.0",
  4728. "symfony/messenger": "<5.0",
  4729. "symfony/translation": "<5.0",
  4730. "symfony/twig-bridge": "<5.0",
  4731. "symfony/validator": "<5.0",
  4732. "twig/twig": "<2.4"
  4733. },
  4734. "provide": {
  4735. "psr/log-implementation": "1.0"
  4736. },
  4737. "require-dev": {
  4738. "psr/cache": "~1.0",
  4739. "symfony/browser-kit": "^4.4|^5.0",
  4740. "symfony/config": "^5.0",
  4741. "symfony/console": "^4.4|^5.0",
  4742. "symfony/css-selector": "^4.4|^5.0",
  4743. "symfony/dependency-injection": "^4.4|^5.0",
  4744. "symfony/dom-crawler": "^4.4|^5.0",
  4745. "symfony/expression-language": "^4.4|^5.0",
  4746. "symfony/finder": "^4.4|^5.0",
  4747. "symfony/process": "^4.4|^5.0",
  4748. "symfony/routing": "^4.4|^5.0",
  4749. "symfony/stopwatch": "^4.4|^5.0",
  4750. "symfony/translation": "^4.4|^5.0",
  4751. "symfony/translation-contracts": "^1.1|^2",
  4752. "twig/twig": "^2.4|^3.0"
  4753. },
  4754. "suggest": {
  4755. "symfony/browser-kit": "",
  4756. "symfony/config": "",
  4757. "symfony/console": "",
  4758. "symfony/dependency-injection": ""
  4759. },
  4760. "type": "library",
  4761. "extra": {
  4762. "branch-alias": {
  4763. "dev-master": "5.1-dev"
  4764. }
  4765. },
  4766. "autoload": {
  4767. "psr-4": {
  4768. "Symfony\\Component\\HttpKernel\\": ""
  4769. },
  4770. "exclude-from-classmap": [
  4771. "/Tests/"
  4772. ]
  4773. },
  4774. "notification-url": "https://packagist.org/downloads/",
  4775. "license": [
  4776. "MIT"
  4777. ],
  4778. "authors": [
  4779. {
  4780. "name": "Fabien Potencier",
  4781. "email": "fabien@symfony.com"
  4782. },
  4783. {
  4784. "name": "Symfony Community",
  4785. "homepage": "https://symfony.com/contributors"
  4786. }
  4787. ],
  4788. "description": "Symfony HttpKernel Component",
  4789. "homepage": "https://symfony.com",
  4790. "funding": [
  4791. {
  4792. "url": "https://symfony.com/sponsor",
  4793. "type": "custom"
  4794. },
  4795. {
  4796. "url": "https://github.com/fabpot",
  4797. "type": "github"
  4798. },
  4799. {
  4800. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4801. "type": "tidelift"
  4802. }
  4803. ],
  4804. "time": "2020-09-27T04:33:19+00:00"
  4805. },
  4806. {
  4807. "name": "symfony/mime",
  4808. "version": "v5.1.6",
  4809. "source": {
  4810. "type": "git",
  4811. "url": "https://github.com/symfony/mime.git",
  4812. "reference": "4404d6545125863561721514ad9388db2661eec5"
  4813. },
  4814. "dist": {
  4815. "type": "zip",
  4816. "url": "https://api.github.com/repos/symfony/mime/zipball/4404d6545125863561721514ad9388db2661eec5",
  4817. "reference": "4404d6545125863561721514ad9388db2661eec5",
  4818. "shasum": ""
  4819. },
  4820. "require": {
  4821. "php": ">=7.2.5",
  4822. "symfony/polyfill-intl-idn": "^1.10",
  4823. "symfony/polyfill-mbstring": "^1.0",
  4824. "symfony/polyfill-php80": "^1.15"
  4825. },
  4826. "conflict": {
  4827. "symfony/mailer": "<4.4"
  4828. },
  4829. "require-dev": {
  4830. "egulias/email-validator": "^2.1.10",
  4831. "symfony/dependency-injection": "^4.4|^5.0"
  4832. },
  4833. "type": "library",
  4834. "extra": {
  4835. "branch-alias": {
  4836. "dev-master": "5.1-dev"
  4837. }
  4838. },
  4839. "autoload": {
  4840. "psr-4": {
  4841. "Symfony\\Component\\Mime\\": ""
  4842. },
  4843. "exclude-from-classmap": [
  4844. "/Tests/"
  4845. ]
  4846. },
  4847. "notification-url": "https://packagist.org/downloads/",
  4848. "license": [
  4849. "MIT"
  4850. ],
  4851. "authors": [
  4852. {
  4853. "name": "Fabien Potencier",
  4854. "email": "fabien@symfony.com"
  4855. },
  4856. {
  4857. "name": "Symfony Community",
  4858. "homepage": "https://symfony.com/contributors"
  4859. }
  4860. ],
  4861. "description": "A library to manipulate MIME messages",
  4862. "homepage": "https://symfony.com",
  4863. "keywords": [
  4864. "mime",
  4865. "mime-type"
  4866. ],
  4867. "funding": [
  4868. {
  4869. "url": "https://symfony.com/sponsor",
  4870. "type": "custom"
  4871. },
  4872. {
  4873. "url": "https://github.com/fabpot",
  4874. "type": "github"
  4875. },
  4876. {
  4877. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4878. "type": "tidelift"
  4879. }
  4880. ],
  4881. "time": "2020-09-02T16:23:27+00:00"
  4882. },
  4883. {
  4884. "name": "symfony/polyfill-ctype",
  4885. "version": "v1.18.1",
  4886. "source": {
  4887. "type": "git",
  4888. "url": "https://github.com/symfony/polyfill-ctype.git",
  4889. "reference": "1c302646f6efc070cd46856e600e5e0684d6b454"
  4890. },
  4891. "dist": {
  4892. "type": "zip",
  4893. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/1c302646f6efc070cd46856e600e5e0684d6b454",
  4894. "reference": "1c302646f6efc070cd46856e600e5e0684d6b454",
  4895. "shasum": ""
  4896. },
  4897. "require": {
  4898. "php": ">=5.3.3"
  4899. },
  4900. "suggest": {
  4901. "ext-ctype": "For best performance"
  4902. },
  4903. "type": "library",
  4904. "extra": {
  4905. "branch-alias": {
  4906. "dev-master": "1.18-dev"
  4907. },
  4908. "thanks": {
  4909. "name": "symfony/polyfill",
  4910. "url": "https://github.com/symfony/polyfill"
  4911. }
  4912. },
  4913. "autoload": {
  4914. "psr-4": {
  4915. "Symfony\\Polyfill\\Ctype\\": ""
  4916. },
  4917. "files": [
  4918. "bootstrap.php"
  4919. ]
  4920. },
  4921. "notification-url": "https://packagist.org/downloads/",
  4922. "license": [
  4923. "MIT"
  4924. ],
  4925. "authors": [
  4926. {
  4927. "name": "Gert de Pagter",
  4928. "email": "BackEndTea@gmail.com"
  4929. },
  4930. {
  4931. "name": "Symfony Community",
  4932. "homepage": "https://symfony.com/contributors"
  4933. }
  4934. ],
  4935. "description": "Symfony polyfill for ctype functions",
  4936. "homepage": "https://symfony.com",
  4937. "keywords": [
  4938. "compatibility",
  4939. "ctype",
  4940. "polyfill",
  4941. "portable"
  4942. ],
  4943. "funding": [
  4944. {
  4945. "url": "https://symfony.com/sponsor",
  4946. "type": "custom"
  4947. },
  4948. {
  4949. "url": "https://github.com/fabpot",
  4950. "type": "github"
  4951. },
  4952. {
  4953. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4954. "type": "tidelift"
  4955. }
  4956. ],
  4957. "time": "2020-07-14T12:35:20+00:00"
  4958. },
  4959. {
  4960. "name": "symfony/polyfill-iconv",
  4961. "version": "v1.18.1",
  4962. "source": {
  4963. "type": "git",
  4964. "url": "https://github.com/symfony/polyfill-iconv.git",
  4965. "reference": "6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36"
  4966. },
  4967. "dist": {
  4968. "type": "zip",
  4969. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36",
  4970. "reference": "6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36",
  4971. "shasum": ""
  4972. },
  4973. "require": {
  4974. "php": ">=5.3.3"
  4975. },
  4976. "suggest": {
  4977. "ext-iconv": "For best performance"
  4978. },
  4979. "type": "library",
  4980. "extra": {
  4981. "branch-alias": {
  4982. "dev-master": "1.18-dev"
  4983. },
  4984. "thanks": {
  4985. "name": "symfony/polyfill",
  4986. "url": "https://github.com/symfony/polyfill"
  4987. }
  4988. },
  4989. "autoload": {
  4990. "psr-4": {
  4991. "Symfony\\Polyfill\\Iconv\\": ""
  4992. },
  4993. "files": [
  4994. "bootstrap.php"
  4995. ]
  4996. },
  4997. "notification-url": "https://packagist.org/downloads/",
  4998. "license": [
  4999. "MIT"
  5000. ],
  5001. "authors": [
  5002. {
  5003. "name": "Nicolas Grekas",
  5004. "email": "p@tchwork.com"
  5005. },
  5006. {
  5007. "name": "Symfony Community",
  5008. "homepage": "https://symfony.com/contributors"
  5009. }
  5010. ],
  5011. "description": "Symfony polyfill for the Iconv extension",
  5012. "homepage": "https://symfony.com",
  5013. "keywords": [
  5014. "compatibility",
  5015. "iconv",
  5016. "polyfill",
  5017. "portable",
  5018. "shim"
  5019. ],
  5020. "funding": [
  5021. {
  5022. "url": "https://symfony.com/sponsor",
  5023. "type": "custom"
  5024. },
  5025. {
  5026. "url": "https://github.com/fabpot",
  5027. "type": "github"
  5028. },
  5029. {
  5030. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5031. "type": "tidelift"
  5032. }
  5033. ],
  5034. "time": "2020-07-14T12:35:20+00:00"
  5035. },
  5036. {
  5037. "name": "symfony/polyfill-intl-grapheme",
  5038. "version": "v1.18.1",
  5039. "source": {
  5040. "type": "git",
  5041. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5042. "reference": "b740103edbdcc39602239ee8860f0f45a8eb9aa5"
  5043. },
  5044. "dist": {
  5045. "type": "zip",
  5046. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b740103edbdcc39602239ee8860f0f45a8eb9aa5",
  5047. "reference": "b740103edbdcc39602239ee8860f0f45a8eb9aa5",
  5048. "shasum": ""
  5049. },
  5050. "require": {
  5051. "php": ">=5.3.3"
  5052. },
  5053. "suggest": {
  5054. "ext-intl": "For best performance"
  5055. },
  5056. "type": "library",
  5057. "extra": {
  5058. "branch-alias": {
  5059. "dev-master": "1.18-dev"
  5060. },
  5061. "thanks": {
  5062. "name": "symfony/polyfill",
  5063. "url": "https://github.com/symfony/polyfill"
  5064. }
  5065. },
  5066. "autoload": {
  5067. "psr-4": {
  5068. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5069. },
  5070. "files": [
  5071. "bootstrap.php"
  5072. ]
  5073. },
  5074. "notification-url": "https://packagist.org/downloads/",
  5075. "license": [
  5076. "MIT"
  5077. ],
  5078. "authors": [
  5079. {
  5080. "name": "Nicolas Grekas",
  5081. "email": "p@tchwork.com"
  5082. },
  5083. {
  5084. "name": "Symfony Community",
  5085. "homepage": "https://symfony.com/contributors"
  5086. }
  5087. ],
  5088. "description": "Symfony polyfill for intl's grapheme_* functions",
  5089. "homepage": "https://symfony.com",
  5090. "keywords": [
  5091. "compatibility",
  5092. "grapheme",
  5093. "intl",
  5094. "polyfill",
  5095. "portable",
  5096. "shim"
  5097. ],
  5098. "funding": [
  5099. {
  5100. "url": "https://symfony.com/sponsor",
  5101. "type": "custom"
  5102. },
  5103. {
  5104. "url": "https://github.com/fabpot",
  5105. "type": "github"
  5106. },
  5107. {
  5108. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5109. "type": "tidelift"
  5110. }
  5111. ],
  5112. "time": "2020-07-14T12:35:20+00:00"
  5113. },
  5114. {
  5115. "name": "symfony/polyfill-intl-idn",
  5116. "version": "v1.18.1",
  5117. "source": {
  5118. "type": "git",
  5119. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5120. "reference": "5dcab1bc7146cf8c1beaa4502a3d9be344334251"
  5121. },
  5122. "dist": {
  5123. "type": "zip",
  5124. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/5dcab1bc7146cf8c1beaa4502a3d9be344334251",
  5125. "reference": "5dcab1bc7146cf8c1beaa4502a3d9be344334251",
  5126. "shasum": ""
  5127. },
  5128. "require": {
  5129. "php": ">=5.3.3",
  5130. "symfony/polyfill-intl-normalizer": "^1.10",
  5131. "symfony/polyfill-php70": "^1.10",
  5132. "symfony/polyfill-php72": "^1.10"
  5133. },
  5134. "suggest": {
  5135. "ext-intl": "For best performance"
  5136. },
  5137. "type": "library",
  5138. "extra": {
  5139. "branch-alias": {
  5140. "dev-master": "1.18-dev"
  5141. },
  5142. "thanks": {
  5143. "name": "symfony/polyfill",
  5144. "url": "https://github.com/symfony/polyfill"
  5145. }
  5146. },
  5147. "autoload": {
  5148. "psr-4": {
  5149. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5150. },
  5151. "files": [
  5152. "bootstrap.php"
  5153. ]
  5154. },
  5155. "notification-url": "https://packagist.org/downloads/",
  5156. "license": [
  5157. "MIT"
  5158. ],
  5159. "authors": [
  5160. {
  5161. "name": "Laurent Bassin",
  5162. "email": "laurent@bassin.info"
  5163. },
  5164. {
  5165. "name": "Trevor Rowbotham",
  5166. "email": "trevor.rowbotham@pm.me"
  5167. },
  5168. {
  5169. "name": "Symfony Community",
  5170. "homepage": "https://symfony.com/contributors"
  5171. }
  5172. ],
  5173. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5174. "homepage": "https://symfony.com",
  5175. "keywords": [
  5176. "compatibility",
  5177. "idn",
  5178. "intl",
  5179. "polyfill",
  5180. "portable",
  5181. "shim"
  5182. ],
  5183. "funding": [
  5184. {
  5185. "url": "https://symfony.com/sponsor",
  5186. "type": "custom"
  5187. },
  5188. {
  5189. "url": "https://github.com/fabpot",
  5190. "type": "github"
  5191. },
  5192. {
  5193. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5194. "type": "tidelift"
  5195. }
  5196. ],
  5197. "time": "2020-08-04T06:02:08+00:00"
  5198. },
  5199. {
  5200. "name": "symfony/polyfill-intl-normalizer",
  5201. "version": "v1.18.1",
  5202. "source": {
  5203. "type": "git",
  5204. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5205. "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e"
  5206. },
  5207. "dist": {
  5208. "type": "zip",
  5209. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e",
  5210. "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e",
  5211. "shasum": ""
  5212. },
  5213. "require": {
  5214. "php": ">=5.3.3"
  5215. },
  5216. "suggest": {
  5217. "ext-intl": "For best performance"
  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\\Intl\\Normalizer\\": ""
  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 for intl's Normalizer class and related functions",
  5255. "homepage": "https://symfony.com",
  5256. "keywords": [
  5257. "compatibility",
  5258. "intl",
  5259. "normalizer",
  5260. "polyfill",
  5261. "portable",
  5262. "shim"
  5263. ],
  5264. "funding": [
  5265. {
  5266. "url": "https://symfony.com/sponsor",
  5267. "type": "custom"
  5268. },
  5269. {
  5270. "url": "https://github.com/fabpot",
  5271. "type": "github"
  5272. },
  5273. {
  5274. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5275. "type": "tidelift"
  5276. }
  5277. ],
  5278. "time": "2020-07-14T12:35:20+00:00"
  5279. },
  5280. {
  5281. "name": "symfony/polyfill-mbstring",
  5282. "version": "v1.18.1",
  5283. "source": {
  5284. "type": "git",
  5285. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5286. "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a"
  5287. },
  5288. "dist": {
  5289. "type": "zip",
  5290. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/a6977d63bf9a0ad4c65cd352709e230876f9904a",
  5291. "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a",
  5292. "shasum": ""
  5293. },
  5294. "require": {
  5295. "php": ">=5.3.3"
  5296. },
  5297. "suggest": {
  5298. "ext-mbstring": "For best performance"
  5299. },
  5300. "type": "library",
  5301. "extra": {
  5302. "branch-alias": {
  5303. "dev-master": "1.18-dev"
  5304. },
  5305. "thanks": {
  5306. "name": "symfony/polyfill",
  5307. "url": "https://github.com/symfony/polyfill"
  5308. }
  5309. },
  5310. "autoload": {
  5311. "psr-4": {
  5312. "Symfony\\Polyfill\\Mbstring\\": ""
  5313. },
  5314. "files": [
  5315. "bootstrap.php"
  5316. ]
  5317. },
  5318. "notification-url": "https://packagist.org/downloads/",
  5319. "license": [
  5320. "MIT"
  5321. ],
  5322. "authors": [
  5323. {
  5324. "name": "Nicolas Grekas",
  5325. "email": "p@tchwork.com"
  5326. },
  5327. {
  5328. "name": "Symfony Community",
  5329. "homepage": "https://symfony.com/contributors"
  5330. }
  5331. ],
  5332. "description": "Symfony polyfill for the Mbstring extension",
  5333. "homepage": "https://symfony.com",
  5334. "keywords": [
  5335. "compatibility",
  5336. "mbstring",
  5337. "polyfill",
  5338. "portable",
  5339. "shim"
  5340. ],
  5341. "funding": [
  5342. {
  5343. "url": "https://symfony.com/sponsor",
  5344. "type": "custom"
  5345. },
  5346. {
  5347. "url": "https://github.com/fabpot",
  5348. "type": "github"
  5349. },
  5350. {
  5351. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5352. "type": "tidelift"
  5353. }
  5354. ],
  5355. "time": "2020-07-14T12:35:20+00:00"
  5356. },
  5357. {
  5358. "name": "symfony/polyfill-php70",
  5359. "version": "v1.18.1",
  5360. "source": {
  5361. "type": "git",
  5362. "url": "https://github.com/symfony/polyfill-php70.git",
  5363. "reference": "0dd93f2c578bdc9c72697eaa5f1dd25644e618d3"
  5364. },
  5365. "dist": {
  5366. "type": "zip",
  5367. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/0dd93f2c578bdc9c72697eaa5f1dd25644e618d3",
  5368. "reference": "0dd93f2c578bdc9c72697eaa5f1dd25644e618d3",
  5369. "shasum": ""
  5370. },
  5371. "require": {
  5372. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  5373. "php": ">=5.3.3"
  5374. },
  5375. "type": "library",
  5376. "extra": {
  5377. "branch-alias": {
  5378. "dev-master": "1.18-dev"
  5379. },
  5380. "thanks": {
  5381. "name": "symfony/polyfill",
  5382. "url": "https://github.com/symfony/polyfill"
  5383. }
  5384. },
  5385. "autoload": {
  5386. "psr-4": {
  5387. "Symfony\\Polyfill\\Php70\\": ""
  5388. },
  5389. "files": [
  5390. "bootstrap.php"
  5391. ],
  5392. "classmap": [
  5393. "Resources/stubs"
  5394. ]
  5395. },
  5396. "notification-url": "https://packagist.org/downloads/",
  5397. "license": [
  5398. "MIT"
  5399. ],
  5400. "authors": [
  5401. {
  5402. "name": "Nicolas Grekas",
  5403. "email": "p@tchwork.com"
  5404. },
  5405. {
  5406. "name": "Symfony Community",
  5407. "homepage": "https://symfony.com/contributors"
  5408. }
  5409. ],
  5410. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  5411. "homepage": "https://symfony.com",
  5412. "keywords": [
  5413. "compatibility",
  5414. "polyfill",
  5415. "portable",
  5416. "shim"
  5417. ],
  5418. "funding": [
  5419. {
  5420. "url": "https://symfony.com/sponsor",
  5421. "type": "custom"
  5422. },
  5423. {
  5424. "url": "https://github.com/fabpot",
  5425. "type": "github"
  5426. },
  5427. {
  5428. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5429. "type": "tidelift"
  5430. }
  5431. ],
  5432. "time": "2020-07-14T12:35:20+00:00"
  5433. },
  5434. {
  5435. "name": "symfony/polyfill-php72",
  5436. "version": "v1.18.1",
  5437. "source": {
  5438. "type": "git",
  5439. "url": "https://github.com/symfony/polyfill-php72.git",
  5440. "reference": "639447d008615574653fb3bc60d1986d7172eaae"
  5441. },
  5442. "dist": {
  5443. "type": "zip",
  5444. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/639447d008615574653fb3bc60d1986d7172eaae",
  5445. "reference": "639447d008615574653fb3bc60d1986d7172eaae",
  5446. "shasum": ""
  5447. },
  5448. "require": {
  5449. "php": ">=5.3.3"
  5450. },
  5451. "type": "library",
  5452. "extra": {
  5453. "branch-alias": {
  5454. "dev-master": "1.18-dev"
  5455. },
  5456. "thanks": {
  5457. "name": "symfony/polyfill",
  5458. "url": "https://github.com/symfony/polyfill"
  5459. }
  5460. },
  5461. "autoload": {
  5462. "psr-4": {
  5463. "Symfony\\Polyfill\\Php72\\": ""
  5464. },
  5465. "files": [
  5466. "bootstrap.php"
  5467. ]
  5468. },
  5469. "notification-url": "https://packagist.org/downloads/",
  5470. "license": [
  5471. "MIT"
  5472. ],
  5473. "authors": [
  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 7.2+ 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/polyfill-php73",
  5509. "version": "v1.18.1",
  5510. "source": {
  5511. "type": "git",
  5512. "url": "https://github.com/symfony/polyfill-php73.git",
  5513. "reference": "fffa1a52a023e782cdcc221d781fe1ec8f87fcca"
  5514. },
  5515. "dist": {
  5516. "type": "zip",
  5517. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fffa1a52a023e782cdcc221d781fe1ec8f87fcca",
  5518. "reference": "fffa1a52a023e782cdcc221d781fe1ec8f87fcca",
  5519. "shasum": ""
  5520. },
  5521. "require": {
  5522. "php": ">=5.3.3"
  5523. },
  5524. "type": "library",
  5525. "extra": {
  5526. "branch-alias": {
  5527. "dev-master": "1.18-dev"
  5528. },
  5529. "thanks": {
  5530. "name": "symfony/polyfill",
  5531. "url": "https://github.com/symfony/polyfill"
  5532. }
  5533. },
  5534. "autoload": {
  5535. "psr-4": {
  5536. "Symfony\\Polyfill\\Php73\\": ""
  5537. },
  5538. "files": [
  5539. "bootstrap.php"
  5540. ],
  5541. "classmap": [
  5542. "Resources/stubs"
  5543. ]
  5544. },
  5545. "notification-url": "https://packagist.org/downloads/",
  5546. "license": [
  5547. "MIT"
  5548. ],
  5549. "authors": [
  5550. {
  5551. "name": "Nicolas Grekas",
  5552. "email": "p@tchwork.com"
  5553. },
  5554. {
  5555. "name": "Symfony Community",
  5556. "homepage": "https://symfony.com/contributors"
  5557. }
  5558. ],
  5559. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  5560. "homepage": "https://symfony.com",
  5561. "keywords": [
  5562. "compatibility",
  5563. "polyfill",
  5564. "portable",
  5565. "shim"
  5566. ],
  5567. "funding": [
  5568. {
  5569. "url": "https://symfony.com/sponsor",
  5570. "type": "custom"
  5571. },
  5572. {
  5573. "url": "https://github.com/fabpot",
  5574. "type": "github"
  5575. },
  5576. {
  5577. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5578. "type": "tidelift"
  5579. }
  5580. ],
  5581. "time": "2020-07-14T12:35:20+00:00"
  5582. },
  5583. {
  5584. "name": "symfony/polyfill-php80",
  5585. "version": "v1.18.1",
  5586. "source": {
  5587. "type": "git",
  5588. "url": "https://github.com/symfony/polyfill-php80.git",
  5589. "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981"
  5590. },
  5591. "dist": {
  5592. "type": "zip",
  5593. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/d87d5766cbf48d72388a9f6b85f280c8ad51f981",
  5594. "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981",
  5595. "shasum": ""
  5596. },
  5597. "require": {
  5598. "php": ">=7.0.8"
  5599. },
  5600. "type": "library",
  5601. "extra": {
  5602. "branch-alias": {
  5603. "dev-master": "1.18-dev"
  5604. },
  5605. "thanks": {
  5606. "name": "symfony/polyfill",
  5607. "url": "https://github.com/symfony/polyfill"
  5608. }
  5609. },
  5610. "autoload": {
  5611. "psr-4": {
  5612. "Symfony\\Polyfill\\Php80\\": ""
  5613. },
  5614. "files": [
  5615. "bootstrap.php"
  5616. ],
  5617. "classmap": [
  5618. "Resources/stubs"
  5619. ]
  5620. },
  5621. "notification-url": "https://packagist.org/downloads/",
  5622. "license": [
  5623. "MIT"
  5624. ],
  5625. "authors": [
  5626. {
  5627. "name": "Ion Bazan",
  5628. "email": "ion.bazan@gmail.com"
  5629. },
  5630. {
  5631. "name": "Nicolas Grekas",
  5632. "email": "p@tchwork.com"
  5633. },
  5634. {
  5635. "name": "Symfony Community",
  5636. "homepage": "https://symfony.com/contributors"
  5637. }
  5638. ],
  5639. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5640. "homepage": "https://symfony.com",
  5641. "keywords": [
  5642. "compatibility",
  5643. "polyfill",
  5644. "portable",
  5645. "shim"
  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-07-14T12:35:20+00:00"
  5662. },
  5663. {
  5664. "name": "symfony/process",
  5665. "version": "v5.1.6",
  5666. "source": {
  5667. "type": "git",
  5668. "url": "https://github.com/symfony/process.git",
  5669. "reference": "d3a2e64866169586502f0cd9cab69135ad12cee9"
  5670. },
  5671. "dist": {
  5672. "type": "zip",
  5673. "url": "https://api.github.com/repos/symfony/process/zipball/d3a2e64866169586502f0cd9cab69135ad12cee9",
  5674. "reference": "d3a2e64866169586502f0cd9cab69135ad12cee9",
  5675. "shasum": ""
  5676. },
  5677. "require": {
  5678. "php": ">=7.2.5",
  5679. "symfony/polyfill-php80": "^1.15"
  5680. },
  5681. "type": "library",
  5682. "extra": {
  5683. "branch-alias": {
  5684. "dev-master": "5.1-dev"
  5685. }
  5686. },
  5687. "autoload": {
  5688. "psr-4": {
  5689. "Symfony\\Component\\Process\\": ""
  5690. },
  5691. "exclude-from-classmap": [
  5692. "/Tests/"
  5693. ]
  5694. },
  5695. "notification-url": "https://packagist.org/downloads/",
  5696. "license": [
  5697. "MIT"
  5698. ],
  5699. "authors": [
  5700. {
  5701. "name": "Fabien Potencier",
  5702. "email": "fabien@symfony.com"
  5703. },
  5704. {
  5705. "name": "Symfony Community",
  5706. "homepage": "https://symfony.com/contributors"
  5707. }
  5708. ],
  5709. "description": "Symfony Process Component",
  5710. "homepage": "https://symfony.com",
  5711. "funding": [
  5712. {
  5713. "url": "https://symfony.com/sponsor",
  5714. "type": "custom"
  5715. },
  5716. {
  5717. "url": "https://github.com/fabpot",
  5718. "type": "github"
  5719. },
  5720. {
  5721. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5722. "type": "tidelift"
  5723. }
  5724. ],
  5725. "time": "2020-09-02T16:23:27+00:00"
  5726. },
  5727. {
  5728. "name": "symfony/routing",
  5729. "version": "v5.1.6",
  5730. "source": {
  5731. "type": "git",
  5732. "url": "https://github.com/symfony/routing.git",
  5733. "reference": "d36e06eb02a55522a8eed070c1cbc3dc3c389876"
  5734. },
  5735. "dist": {
  5736. "type": "zip",
  5737. "url": "https://api.github.com/repos/symfony/routing/zipball/d36e06eb02a55522a8eed070c1cbc3dc3c389876",
  5738. "reference": "d36e06eb02a55522a8eed070c1cbc3dc3c389876",
  5739. "shasum": ""
  5740. },
  5741. "require": {
  5742. "php": ">=7.2.5",
  5743. "symfony/deprecation-contracts": "^2.1",
  5744. "symfony/polyfill-php80": "^1.15"
  5745. },
  5746. "conflict": {
  5747. "symfony/config": "<5.0",
  5748. "symfony/dependency-injection": "<4.4",
  5749. "symfony/yaml": "<4.4"
  5750. },
  5751. "require-dev": {
  5752. "doctrine/annotations": "~1.2",
  5753. "psr/log": "~1.0",
  5754. "symfony/config": "^5.0",
  5755. "symfony/dependency-injection": "^4.4|^5.0",
  5756. "symfony/expression-language": "^4.4|^5.0",
  5757. "symfony/http-foundation": "^4.4|^5.0",
  5758. "symfony/yaml": "^4.4|^5.0"
  5759. },
  5760. "suggest": {
  5761. "doctrine/annotations": "For using the annotation loader",
  5762. "symfony/config": "For using the all-in-one router or any loader",
  5763. "symfony/expression-language": "For using expression matching",
  5764. "symfony/http-foundation": "For using a Symfony Request object",
  5765. "symfony/yaml": "For using the YAML loader"
  5766. },
  5767. "type": "library",
  5768. "extra": {
  5769. "branch-alias": {
  5770. "dev-master": "5.1-dev"
  5771. }
  5772. },
  5773. "autoload": {
  5774. "psr-4": {
  5775. "Symfony\\Component\\Routing\\": ""
  5776. },
  5777. "exclude-from-classmap": [
  5778. "/Tests/"
  5779. ]
  5780. },
  5781. "notification-url": "https://packagist.org/downloads/",
  5782. "license": [
  5783. "MIT"
  5784. ],
  5785. "authors": [
  5786. {
  5787. "name": "Fabien Potencier",
  5788. "email": "fabien@symfony.com"
  5789. },
  5790. {
  5791. "name": "Symfony Community",
  5792. "homepage": "https://symfony.com/contributors"
  5793. }
  5794. ],
  5795. "description": "Symfony Routing Component",
  5796. "homepage": "https://symfony.com",
  5797. "keywords": [
  5798. "router",
  5799. "routing",
  5800. "uri",
  5801. "url"
  5802. ],
  5803. "funding": [
  5804. {
  5805. "url": "https://symfony.com/sponsor",
  5806. "type": "custom"
  5807. },
  5808. {
  5809. "url": "https://github.com/fabpot",
  5810. "type": "github"
  5811. },
  5812. {
  5813. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5814. "type": "tidelift"
  5815. }
  5816. ],
  5817. "time": "2020-09-02T16:23:27+00:00"
  5818. },
  5819. {
  5820. "name": "symfony/service-contracts",
  5821. "version": "v2.2.0",
  5822. "source": {
  5823. "type": "git",
  5824. "url": "https://github.com/symfony/service-contracts.git",
  5825. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  5826. },
  5827. "dist": {
  5828. "type": "zip",
  5829. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  5830. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  5831. "shasum": ""
  5832. },
  5833. "require": {
  5834. "php": ">=7.2.5",
  5835. "psr/container": "^1.0"
  5836. },
  5837. "suggest": {
  5838. "symfony/service-implementation": ""
  5839. },
  5840. "type": "library",
  5841. "extra": {
  5842. "branch-alias": {
  5843. "dev-master": "2.2-dev"
  5844. },
  5845. "thanks": {
  5846. "name": "symfony/contracts",
  5847. "url": "https://github.com/symfony/contracts"
  5848. }
  5849. },
  5850. "autoload": {
  5851. "psr-4": {
  5852. "Symfony\\Contracts\\Service\\": ""
  5853. }
  5854. },
  5855. "notification-url": "https://packagist.org/downloads/",
  5856. "license": [
  5857. "MIT"
  5858. ],
  5859. "authors": [
  5860. {
  5861. "name": "Nicolas Grekas",
  5862. "email": "p@tchwork.com"
  5863. },
  5864. {
  5865. "name": "Symfony Community",
  5866. "homepage": "https://symfony.com/contributors"
  5867. }
  5868. ],
  5869. "description": "Generic abstractions related to writing services",
  5870. "homepage": "https://symfony.com",
  5871. "keywords": [
  5872. "abstractions",
  5873. "contracts",
  5874. "decoupling",
  5875. "interfaces",
  5876. "interoperability",
  5877. "standards"
  5878. ],
  5879. "support": {
  5880. "source": "https://github.com/symfony/service-contracts/tree/master"
  5881. },
  5882. "funding": [
  5883. {
  5884. "url": "https://symfony.com/sponsor",
  5885. "type": "custom"
  5886. },
  5887. {
  5888. "url": "https://github.com/fabpot",
  5889. "type": "github"
  5890. },
  5891. {
  5892. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5893. "type": "tidelift"
  5894. }
  5895. ],
  5896. "time": "2020-09-07T11:33:47+00:00"
  5897. },
  5898. {
  5899. "name": "symfony/string",
  5900. "version": "v5.1.6",
  5901. "source": {
  5902. "type": "git",
  5903. "url": "https://github.com/symfony/string.git",
  5904. "reference": "4a9afe9d07bac506f75bcee8ed3ce76da5a9343e"
  5905. },
  5906. "dist": {
  5907. "type": "zip",
  5908. "url": "https://api.github.com/repos/symfony/string/zipball/4a9afe9d07bac506f75bcee8ed3ce76da5a9343e",
  5909. "reference": "4a9afe9d07bac506f75bcee8ed3ce76da5a9343e",
  5910. "shasum": ""
  5911. },
  5912. "require": {
  5913. "php": ">=7.2.5",
  5914. "symfony/polyfill-ctype": "~1.8",
  5915. "symfony/polyfill-intl-grapheme": "~1.0",
  5916. "symfony/polyfill-intl-normalizer": "~1.0",
  5917. "symfony/polyfill-mbstring": "~1.0",
  5918. "symfony/polyfill-php80": "~1.15"
  5919. },
  5920. "require-dev": {
  5921. "symfony/error-handler": "^4.4|^5.0",
  5922. "symfony/http-client": "^4.4|^5.0",
  5923. "symfony/translation-contracts": "^1.1|^2",
  5924. "symfony/var-exporter": "^4.4|^5.0"
  5925. },
  5926. "type": "library",
  5927. "extra": {
  5928. "branch-alias": {
  5929. "dev-master": "5.1-dev"
  5930. }
  5931. },
  5932. "autoload": {
  5933. "psr-4": {
  5934. "Symfony\\Component\\String\\": ""
  5935. },
  5936. "files": [
  5937. "Resources/functions.php"
  5938. ],
  5939. "exclude-from-classmap": [
  5940. "/Tests/"
  5941. ]
  5942. },
  5943. "notification-url": "https://packagist.org/downloads/",
  5944. "license": [
  5945. "MIT"
  5946. ],
  5947. "authors": [
  5948. {
  5949. "name": "Nicolas Grekas",
  5950. "email": "p@tchwork.com"
  5951. },
  5952. {
  5953. "name": "Symfony Community",
  5954. "homepage": "https://symfony.com/contributors"
  5955. }
  5956. ],
  5957. "description": "Symfony String component",
  5958. "homepage": "https://symfony.com",
  5959. "keywords": [
  5960. "grapheme",
  5961. "i18n",
  5962. "string",
  5963. "unicode",
  5964. "utf-8",
  5965. "utf8"
  5966. ],
  5967. "funding": [
  5968. {
  5969. "url": "https://symfony.com/sponsor",
  5970. "type": "custom"
  5971. },
  5972. {
  5973. "url": "https://github.com/fabpot",
  5974. "type": "github"
  5975. },
  5976. {
  5977. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5978. "type": "tidelift"
  5979. }
  5980. ],
  5981. "time": "2020-09-15T12:23:47+00:00"
  5982. },
  5983. {
  5984. "name": "symfony/translation",
  5985. "version": "v5.1.6",
  5986. "source": {
  5987. "type": "git",
  5988. "url": "https://github.com/symfony/translation.git",
  5989. "reference": "e3cdd5119b1b5bf0698c351b8ee20fb5a4ea248b"
  5990. },
  5991. "dist": {
  5992. "type": "zip",
  5993. "url": "https://api.github.com/repos/symfony/translation/zipball/e3cdd5119b1b5bf0698c351b8ee20fb5a4ea248b",
  5994. "reference": "e3cdd5119b1b5bf0698c351b8ee20fb5a4ea248b",
  5995. "shasum": ""
  5996. },
  5997. "require": {
  5998. "php": ">=7.2.5",
  5999. "symfony/polyfill-mbstring": "~1.0",
  6000. "symfony/polyfill-php80": "^1.15",
  6001. "symfony/translation-contracts": "^2"
  6002. },
  6003. "conflict": {
  6004. "symfony/config": "<4.4",
  6005. "symfony/dependency-injection": "<5.0",
  6006. "symfony/http-kernel": "<5.0",
  6007. "symfony/twig-bundle": "<5.0",
  6008. "symfony/yaml": "<4.4"
  6009. },
  6010. "provide": {
  6011. "symfony/translation-implementation": "2.0"
  6012. },
  6013. "require-dev": {
  6014. "psr/log": "~1.0",
  6015. "symfony/config": "^4.4|^5.0",
  6016. "symfony/console": "^4.4|^5.0",
  6017. "symfony/dependency-injection": "^5.0",
  6018. "symfony/finder": "^4.4|^5.0",
  6019. "symfony/http-kernel": "^5.0",
  6020. "symfony/intl": "^4.4|^5.0",
  6021. "symfony/service-contracts": "^1.1.2|^2",
  6022. "symfony/yaml": "^4.4|^5.0"
  6023. },
  6024. "suggest": {
  6025. "psr/log-implementation": "To use logging capability in translator",
  6026. "symfony/config": "",
  6027. "symfony/yaml": ""
  6028. },
  6029. "type": "library",
  6030. "extra": {
  6031. "branch-alias": {
  6032. "dev-master": "5.1-dev"
  6033. }
  6034. },
  6035. "autoload": {
  6036. "psr-4": {
  6037. "Symfony\\Component\\Translation\\": ""
  6038. },
  6039. "exclude-from-classmap": [
  6040. "/Tests/"
  6041. ]
  6042. },
  6043. "notification-url": "https://packagist.org/downloads/",
  6044. "license": [
  6045. "MIT"
  6046. ],
  6047. "authors": [
  6048. {
  6049. "name": "Fabien Potencier",
  6050. "email": "fabien@symfony.com"
  6051. },
  6052. {
  6053. "name": "Symfony Community",
  6054. "homepage": "https://symfony.com/contributors"
  6055. }
  6056. ],
  6057. "description": "Symfony Translation Component",
  6058. "homepage": "https://symfony.com",
  6059. "funding": [
  6060. {
  6061. "url": "https://symfony.com/sponsor",
  6062. "type": "custom"
  6063. },
  6064. {
  6065. "url": "https://github.com/fabpot",
  6066. "type": "github"
  6067. },
  6068. {
  6069. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6070. "type": "tidelift"
  6071. }
  6072. ],
  6073. "time": "2020-09-27T03:44:28+00:00"
  6074. },
  6075. {
  6076. "name": "symfony/translation-contracts",
  6077. "version": "v2.2.0",
  6078. "source": {
  6079. "type": "git",
  6080. "url": "https://github.com/symfony/translation-contracts.git",
  6081. "reference": "77ce1c3627c9f39643acd9af086631f842c50c4d"
  6082. },
  6083. "dist": {
  6084. "type": "zip",
  6085. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/77ce1c3627c9f39643acd9af086631f842c50c4d",
  6086. "reference": "77ce1c3627c9f39643acd9af086631f842c50c4d",
  6087. "shasum": ""
  6088. },
  6089. "require": {
  6090. "php": ">=7.2.5"
  6091. },
  6092. "suggest": {
  6093. "symfony/translation-implementation": ""
  6094. },
  6095. "type": "library",
  6096. "extra": {
  6097. "branch-alias": {
  6098. "dev-master": "2.2-dev"
  6099. },
  6100. "thanks": {
  6101. "name": "symfony/contracts",
  6102. "url": "https://github.com/symfony/contracts"
  6103. }
  6104. },
  6105. "autoload": {
  6106. "psr-4": {
  6107. "Symfony\\Contracts\\Translation\\": ""
  6108. }
  6109. },
  6110. "notification-url": "https://packagist.org/downloads/",
  6111. "license": [
  6112. "MIT"
  6113. ],
  6114. "authors": [
  6115. {
  6116. "name": "Nicolas Grekas",
  6117. "email": "p@tchwork.com"
  6118. },
  6119. {
  6120. "name": "Symfony Community",
  6121. "homepage": "https://symfony.com/contributors"
  6122. }
  6123. ],
  6124. "description": "Generic abstractions related to translation",
  6125. "homepage": "https://symfony.com",
  6126. "keywords": [
  6127. "abstractions",
  6128. "contracts",
  6129. "decoupling",
  6130. "interfaces",
  6131. "interoperability",
  6132. "standards"
  6133. ],
  6134. "support": {
  6135. "source": "https://github.com/symfony/translation-contracts/tree/master"
  6136. },
  6137. "funding": [
  6138. {
  6139. "url": "https://symfony.com/sponsor",
  6140. "type": "custom"
  6141. },
  6142. {
  6143. "url": "https://github.com/fabpot",
  6144. "type": "github"
  6145. },
  6146. {
  6147. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6148. "type": "tidelift"
  6149. }
  6150. ],
  6151. "time": "2020-09-07T11:33:47+00:00"
  6152. },
  6153. {
  6154. "name": "symfony/var-dumper",
  6155. "version": "v5.1.6",
  6156. "source": {
  6157. "type": "git",
  6158. "url": "https://github.com/symfony/var-dumper.git",
  6159. "reference": "c976c115a0d788808f7e71834c8eb0844f678d02"
  6160. },
  6161. "dist": {
  6162. "type": "zip",
  6163. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/c976c115a0d788808f7e71834c8eb0844f678d02",
  6164. "reference": "c976c115a0d788808f7e71834c8eb0844f678d02",
  6165. "shasum": ""
  6166. },
  6167. "require": {
  6168. "php": ">=7.2.5",
  6169. "symfony/polyfill-mbstring": "~1.0",
  6170. "symfony/polyfill-php80": "^1.15"
  6171. },
  6172. "conflict": {
  6173. "phpunit/phpunit": "<5.4.3",
  6174. "symfony/console": "<4.4"
  6175. },
  6176. "require-dev": {
  6177. "ext-iconv": "*",
  6178. "symfony/console": "^4.4|^5.0",
  6179. "symfony/process": "^4.4|^5.0",
  6180. "twig/twig": "^2.4|^3.0"
  6181. },
  6182. "suggest": {
  6183. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6184. "ext-intl": "To show region name in time zone dump",
  6185. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6186. },
  6187. "bin": [
  6188. "Resources/bin/var-dump-server"
  6189. ],
  6190. "type": "library",
  6191. "extra": {
  6192. "branch-alias": {
  6193. "dev-master": "5.1-dev"
  6194. }
  6195. },
  6196. "autoload": {
  6197. "files": [
  6198. "Resources/functions/dump.php"
  6199. ],
  6200. "psr-4": {
  6201. "Symfony\\Component\\VarDumper\\": ""
  6202. },
  6203. "exclude-from-classmap": [
  6204. "/Tests/"
  6205. ]
  6206. },
  6207. "notification-url": "https://packagist.org/downloads/",
  6208. "license": [
  6209. "MIT"
  6210. ],
  6211. "authors": [
  6212. {
  6213. "name": "Nicolas Grekas",
  6214. "email": "p@tchwork.com"
  6215. },
  6216. {
  6217. "name": "Symfony Community",
  6218. "homepage": "https://symfony.com/contributors"
  6219. }
  6220. ],
  6221. "description": "Symfony mechanism for exploring and dumping PHP variables",
  6222. "homepage": "https://symfony.com",
  6223. "keywords": [
  6224. "debug",
  6225. "dump"
  6226. ],
  6227. "funding": [
  6228. {
  6229. "url": "https://symfony.com/sponsor",
  6230. "type": "custom"
  6231. },
  6232. {
  6233. "url": "https://github.com/fabpot",
  6234. "type": "github"
  6235. },
  6236. {
  6237. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6238. "type": "tidelift"
  6239. }
  6240. ],
  6241. "time": "2020-09-18T14:27:32+00:00"
  6242. },
  6243. {
  6244. "name": "tijsverkoyen/css-to-inline-styles",
  6245. "version": "2.2.3",
  6246. "source": {
  6247. "type": "git",
  6248. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  6249. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  6250. },
  6251. "dist": {
  6252. "type": "zip",
  6253. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  6254. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  6255. "shasum": ""
  6256. },
  6257. "require": {
  6258. "ext-dom": "*",
  6259. "ext-libxml": "*",
  6260. "php": "^5.5 || ^7.0 || ^8.0",
  6261. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  6262. },
  6263. "require-dev": {
  6264. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  6265. },
  6266. "type": "library",
  6267. "extra": {
  6268. "branch-alias": {
  6269. "dev-master": "2.2.x-dev"
  6270. }
  6271. },
  6272. "autoload": {
  6273. "psr-4": {
  6274. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  6275. }
  6276. },
  6277. "notification-url": "https://packagist.org/downloads/",
  6278. "license": [
  6279. "BSD-3-Clause"
  6280. ],
  6281. "authors": [
  6282. {
  6283. "name": "Tijs Verkoyen",
  6284. "email": "css_to_inline_styles@verkoyen.eu",
  6285. "role": "Developer"
  6286. }
  6287. ],
  6288. "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.",
  6289. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  6290. "time": "2020-07-13T06:12:54+00:00"
  6291. },
  6292. {
  6293. "name": "vlucas/phpdotenv",
  6294. "version": "v4.1.8",
  6295. "source": {
  6296. "type": "git",
  6297. "url": "https://github.com/vlucas/phpdotenv.git",
  6298. "reference": "572af79d913627a9d70374d27a6f5d689a35de32"
  6299. },
  6300. "dist": {
  6301. "type": "zip",
  6302. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/572af79d913627a9d70374d27a6f5d689a35de32",
  6303. "reference": "572af79d913627a9d70374d27a6f5d689a35de32",
  6304. "shasum": ""
  6305. },
  6306. "require": {
  6307. "php": "^5.5.9 || ^7.0 || ^8.0",
  6308. "phpoption/phpoption": "^1.7.3",
  6309. "symfony/polyfill-ctype": "^1.17"
  6310. },
  6311. "require-dev": {
  6312. "bamarni/composer-bin-plugin": "^1.4.1",
  6313. "ext-filter": "*",
  6314. "ext-pcre": "*",
  6315. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0"
  6316. },
  6317. "suggest": {
  6318. "ext-filter": "Required to use the boolean validator.",
  6319. "ext-pcre": "Required to use most of the library."
  6320. },
  6321. "type": "library",
  6322. "extra": {
  6323. "branch-alias": {
  6324. "dev-master": "4.1-dev"
  6325. }
  6326. },
  6327. "autoload": {
  6328. "psr-4": {
  6329. "Dotenv\\": "src/"
  6330. }
  6331. },
  6332. "notification-url": "https://packagist.org/downloads/",
  6333. "license": [
  6334. "BSD-3-Clause"
  6335. ],
  6336. "authors": [
  6337. {
  6338. "name": "Graham Campbell",
  6339. "email": "graham@alt-three.com",
  6340. "homepage": "https://gjcampbell.co.uk/"
  6341. },
  6342. {
  6343. "name": "Vance Lucas",
  6344. "email": "vance@vancelucas.com",
  6345. "homepage": "https://vancelucas.com/"
  6346. }
  6347. ],
  6348. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6349. "keywords": [
  6350. "dotenv",
  6351. "env",
  6352. "environment"
  6353. ],
  6354. "funding": [
  6355. {
  6356. "url": "https://github.com/GrahamCampbell",
  6357. "type": "github"
  6358. },
  6359. {
  6360. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  6361. "type": "tidelift"
  6362. }
  6363. ],
  6364. "time": "2020-07-14T19:22:52+00:00"
  6365. },
  6366. {
  6367. "name": "voku/portable-ascii",
  6368. "version": "1.5.3",
  6369. "source": {
  6370. "type": "git",
  6371. "url": "https://github.com/voku/portable-ascii.git",
  6372. "reference": "25bcbf01678930251fd572891447d9e318a6e2b8"
  6373. },
  6374. "dist": {
  6375. "type": "zip",
  6376. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/25bcbf01678930251fd572891447d9e318a6e2b8",
  6377. "reference": "25bcbf01678930251fd572891447d9e318a6e2b8",
  6378. "shasum": ""
  6379. },
  6380. "require": {
  6381. "php": ">=7.0.0"
  6382. },
  6383. "require-dev": {
  6384. "phpunit/phpunit": "~6.0 || ~7.0"
  6385. },
  6386. "suggest": {
  6387. "ext-intl": "Use Intl for transliterator_transliterate() support"
  6388. },
  6389. "type": "library",
  6390. "autoload": {
  6391. "psr-4": {
  6392. "voku\\": "src/voku/"
  6393. }
  6394. },
  6395. "notification-url": "https://packagist.org/downloads/",
  6396. "license": [
  6397. "MIT"
  6398. ],
  6399. "authors": [
  6400. {
  6401. "name": "Lars Moelleken",
  6402. "homepage": "http://www.moelleken.org/"
  6403. }
  6404. ],
  6405. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  6406. "homepage": "https://github.com/voku/portable-ascii",
  6407. "keywords": [
  6408. "ascii",
  6409. "clean",
  6410. "php"
  6411. ],
  6412. "funding": [
  6413. {
  6414. "url": "https://www.paypal.me/moelleken",
  6415. "type": "custom"
  6416. },
  6417. {
  6418. "url": "https://github.com/voku",
  6419. "type": "github"
  6420. },
  6421. {
  6422. "url": "https://opencollective.com/portable-ascii",
  6423. "type": "open_collective"
  6424. },
  6425. {
  6426. "url": "https://www.patreon.com/voku",
  6427. "type": "patreon"
  6428. },
  6429. {
  6430. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  6431. "type": "tidelift"
  6432. }
  6433. ],
  6434. "time": "2020-07-22T23:32:04+00:00"
  6435. },
  6436. {
  6437. "name": "xhat/payjs",
  6438. "version": "1.5.0",
  6439. "source": {
  6440. "type": "git",
  6441. "url": "https://github.com/xhat/payjs.git",
  6442. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364"
  6443. },
  6444. "dist": {
  6445. "type": "zip",
  6446. "url": "https://api.github.com/repos/xhat/payjs/zipball/d15b678f7fb70fc70bafa82c5a7896fceebad364",
  6447. "reference": "d15b678f7fb70fc70bafa82c5a7896fceebad364",
  6448. "shasum": ""
  6449. },
  6450. "type": "library",
  6451. "autoload": {
  6452. "psr-4": {
  6453. "Xhat\\Payjs\\": "src/"
  6454. }
  6455. },
  6456. "notification-url": "https://packagist.org/downloads/",
  6457. "license": [
  6458. "MIT"
  6459. ],
  6460. "authors": [
  6461. {
  6462. "name": "andy",
  6463. "email": "andy@popfeng.com"
  6464. }
  6465. ],
  6466. "description": "本项目是基于 PAYJS 的 API 开发的 Composer Package,可直接用于生产环境 https://payjs.cn",
  6467. "support": {
  6468. "issues": "https://github.com/xhat/payjs/issues",
  6469. "source": "https://github.com/xhat/payjs/tree/1.5.0"
  6470. },
  6471. "funding": [
  6472. {
  6473. "url": "https://payjs.cn/sponsor/dajjxz",
  6474. "type": "custom"
  6475. }
  6476. ],
  6477. "time": "2020-09-11T06:02:42+00:00"
  6478. },
  6479. {
  6480. "name": "zbrettonye/geetest",
  6481. "version": "v1.1.0",
  6482. "source": {
  6483. "type": "git",
  6484. "url": "https://github.com/ZBrettonYe/geetest.git",
  6485. "reference": "98339e279526b6c693d8a66edbe3ebf05e800a91"
  6486. },
  6487. "dist": {
  6488. "type": "zip",
  6489. "url": "https://api.github.com/repos/ZBrettonYe/geetest/zipball/98339e279526b6c693d8a66edbe3ebf05e800a91",
  6490. "reference": "98339e279526b6c693d8a66edbe3ebf05e800a91",
  6491. "shasum": ""
  6492. },
  6493. "require": {
  6494. "illuminate/routing": "^5.5 || ^6 || ^7",
  6495. "illuminate/support": "^5.5 || ^6 || ^7",
  6496. "php": "^7.3"
  6497. },
  6498. "require-dev": {
  6499. "mockery/mockery": "^1.4",
  6500. "phpunit/phpunit": "^9.0"
  6501. },
  6502. "type": "library",
  6503. "extra": {
  6504. "laravel": {
  6505. "providers": [
  6506. "ZBrettonYe\\Geetest\\GeetestServiceProvider"
  6507. ],
  6508. "aliases": {
  6509. "Geetest": "ZBrettonYe\\Geetest\\Geetest"
  6510. }
  6511. }
  6512. },
  6513. "autoload": {
  6514. "psr-4": {
  6515. "ZBrettonYe\\Geetest\\": "src/"
  6516. }
  6517. },
  6518. "notification-url": "https://packagist.org/downloads/",
  6519. "license": [
  6520. "MIT"
  6521. ],
  6522. "authors": [
  6523. {
  6524. "name": "zbrettonye",
  6525. "email": "monkeyblacktech97@gmail.com"
  6526. }
  6527. ],
  6528. "description": "Geetest Package for Laravel",
  6529. "keywords": [
  6530. "geetest",
  6531. "laravel"
  6532. ],
  6533. "time": "2020-09-03T04:24:48+00:00"
  6534. },
  6535. {
  6536. "name": "zbrettonye/hcaptcha",
  6537. "version": "v1.0",
  6538. "source": {
  6539. "type": "git",
  6540. "url": "https://github.com/ZBrettonYe/hcaptcha.git",
  6541. "reference": "eef47bd522c927a8abe5d3ec0fd8ad47723799fa"
  6542. },
  6543. "dist": {
  6544. "type": "zip",
  6545. "url": "https://api.github.com/repos/ZBrettonYe/hcaptcha/zipball/eef47bd522c927a8abe5d3ec0fd8ad47723799fa",
  6546. "reference": "eef47bd522c927a8abe5d3ec0fd8ad47723799fa",
  6547. "shasum": ""
  6548. },
  6549. "require": {
  6550. "guzzlehttp/guzzle": "^6.2|^7.0",
  6551. "illuminate/support": "^5.5 || ^6 || ^7",
  6552. "php": ">=5.5.5"
  6553. },
  6554. "require-dev": {
  6555. "phpunit/phpunit": "~4.8"
  6556. },
  6557. "type": "library",
  6558. "extra": {
  6559. "laravel": {
  6560. "providers": [
  6561. "ZBrettonYe\\HCaptcha\\HCaptchaServiceProvider"
  6562. ],
  6563. "aliases": {
  6564. "HCaptcha": "ZBrettonYe\\HCaptcha\\Facades\\HCaptcha"
  6565. }
  6566. }
  6567. },
  6568. "autoload": {
  6569. "psr-4": {
  6570. "ZBrettonYe\\HCaptcha\\": "src/"
  6571. }
  6572. },
  6573. "notification-url": "https://packagist.org/downloads/",
  6574. "license": [
  6575. "MIT"
  6576. ],
  6577. "authors": [
  6578. {
  6579. "name": "zbrettonye",
  6580. "email": "monkeyblacktech97@gmail.com"
  6581. }
  6582. ],
  6583. "description": "hCaptcha For Laravel5~7",
  6584. "keywords": [
  6585. "captcha",
  6586. "hcaptcha",
  6587. "laravel"
  6588. ],
  6589. "time": "2020-09-03T05:00:52+00:00"
  6590. },
  6591. {
  6592. "name": "zbrettonye/no-captcha",
  6593. "version": "v1.0.4",
  6594. "source": {
  6595. "type": "git",
  6596. "url": "https://github.com/ZBrettonYe/no-captcha.git",
  6597. "reference": "b3753565cacf0fb80fb6472ddfbbd3fc576d0ef3"
  6598. },
  6599. "dist": {
  6600. "type": "zip",
  6601. "url": "https://api.github.com/repos/ZBrettonYe/no-captcha/zipball/b3753565cacf0fb80fb6472ddfbbd3fc576d0ef3",
  6602. "reference": "b3753565cacf0fb80fb6472ddfbbd3fc576d0ef3",
  6603. "shasum": ""
  6604. },
  6605. "require": {
  6606. "guzzlehttp/guzzle": "^6.2|^7.0",
  6607. "illuminate/support": "^5.0|^6.0|^7.0",
  6608. "php": ">=5.5.5"
  6609. },
  6610. "require-dev": {
  6611. "phpunit/phpunit": "~4.8"
  6612. },
  6613. "type": "library",
  6614. "extra": {
  6615. "laravel": {
  6616. "providers": [
  6617. "ZBrettonYe\\NoCaptcha\\NoCaptchaServiceProvider"
  6618. ],
  6619. "aliases": {
  6620. "NoCaptcha": "ZBrettonYe\\NoCaptcha\\Facades\\NoCaptcha"
  6621. }
  6622. }
  6623. },
  6624. "autoload": {
  6625. "psr-4": {
  6626. "ZBrettonYe\\NoCaptcha\\": "src/"
  6627. }
  6628. },
  6629. "notification-url": "https://packagist.org/downloads/",
  6630. "license": [
  6631. "MIT"
  6632. ],
  6633. "authors": [
  6634. {
  6635. "name": "zbrettonye",
  6636. "email": "monkeyblacktech97@gmail.com"
  6637. }
  6638. ],
  6639. "description": "No CAPTCHA reCAPTCHA For Laravel.",
  6640. "keywords": [
  6641. "captcha",
  6642. "laravel",
  6643. "laravel4",
  6644. "laravel5",
  6645. "laravel6",
  6646. "no-captcha",
  6647. "recaptcha"
  6648. ],
  6649. "time": "2020-09-03T04:37:04+00:00"
  6650. },
  6651. {
  6652. "name": "zoujingli/ip2region",
  6653. "version": "v1.0.8",
  6654. "source": {
  6655. "type": "git",
  6656. "url": "https://github.com/zoujingli/ip2region.git",
  6657. "reference": "d6be3ab9da1a1ab7e3cd51c4aa634a34de358ce6"
  6658. },
  6659. "dist": {
  6660. "type": "zip",
  6661. "url": "https://api.github.com/repos/zoujingli/ip2region/zipball/d6be3ab9da1a1ab7e3cd51c4aa634a34de358ce6",
  6662. "reference": "d6be3ab9da1a1ab7e3cd51c4aa634a34de358ce6",
  6663. "shasum": ""
  6664. },
  6665. "require": {
  6666. "php": ">=5.3"
  6667. },
  6668. "type": "library",
  6669. "autoload": {
  6670. "classmap": [
  6671. "Ip2Region.php"
  6672. ]
  6673. },
  6674. "notification-url": "https://packagist.org/downloads/",
  6675. "license": [
  6676. "Apache-2.0"
  6677. ],
  6678. "authors": [
  6679. {
  6680. "name": "Anyon",
  6681. "email": "zoujingli@qq.com",
  6682. "homepage": "http://ctolog.com"
  6683. }
  6684. ],
  6685. "description": "Ip2Region for PHP",
  6686. "homepage": "https://github.com/zoujingli/Ip2Region",
  6687. "keywords": [
  6688. "Ip2Region"
  6689. ],
  6690. "time": "2020-07-06T05:33:26+00:00"
  6691. }
  6692. ],
  6693. "packages-dev": [
  6694. {
  6695. "name": "andrey-helldar/laravel-lang-publisher",
  6696. "version": "v6.0.2",
  6697. "source": {
  6698. "type": "git",
  6699. "url": "https://github.com/andrey-helldar/laravel-lang-publisher.git",
  6700. "reference": "7efc1bef0b67962db53c05dabf2eb0f09559be3a"
  6701. },
  6702. "dist": {
  6703. "type": "zip",
  6704. "url": "https://api.github.com/repos/andrey-helldar/laravel-lang-publisher/zipball/7efc1bef0b67962db53c05dabf2eb0f09559be3a",
  6705. "reference": "7efc1bef0b67962db53c05dabf2eb0f09559be3a",
  6706. "shasum": ""
  6707. },
  6708. "require": {
  6709. "andrey-helldar/pretty-array": "^1.4.2",
  6710. "andrey-helldar/support": "^1.4.1",
  6711. "ext-json": "*",
  6712. "illuminate/console": "^7.0|^8.0",
  6713. "illuminate/support": "^7.0|^8.0",
  6714. "laravel-lang/lang": "^7.0",
  6715. "php": "^7.2.5"
  6716. },
  6717. "require-dev": {
  6718. "mockery/mockery": "^1.3.1",
  6719. "orchestra/testbench": "^5.0|^6.0",
  6720. "phpunit/phpunit": "^8.4|^9.0"
  6721. },
  6722. "suggest": {
  6723. "andrey-helldar/lang-translations": "Translation of main messages",
  6724. "laravel/jetstream": "Tailwind scaffolding for the Laravel framework.",
  6725. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  6726. },
  6727. "type": "library",
  6728. "extra": {
  6729. "laravel": {
  6730. "providers": [
  6731. "Helldar\\LaravelLangPublisher\\ServiceProvider"
  6732. ]
  6733. }
  6734. },
  6735. "autoload": {
  6736. "psr-4": {
  6737. "Helldar\\LaravelLangPublisher\\": "src"
  6738. }
  6739. },
  6740. "notification-url": "https://packagist.org/downloads/",
  6741. "license": [
  6742. "MIT"
  6743. ],
  6744. "authors": [
  6745. {
  6746. "name": "Andrey Helldar",
  6747. "email": "helldar@ai-rus.com"
  6748. }
  6749. ],
  6750. "description": "Publisher lang files for the Laravel Framework + Laravel Jetstream from Laravel-Lang/lang",
  6751. "keywords": [
  6752. "i18n",
  6753. "jetstream",
  6754. "lang",
  6755. "languages",
  6756. "laravel",
  6757. "locale",
  6758. "localisation",
  6759. "localization",
  6760. "lpm",
  6761. "lumen",
  6762. "publisher",
  6763. "trans",
  6764. "translations",
  6765. "validations"
  6766. ],
  6767. "funding": [
  6768. {
  6769. "url": "https://money.yandex.ru/to/410012115955701",
  6770. "type": "custom"
  6771. },
  6772. {
  6773. "url": "https://paypal.me/helldar",
  6774. "type": "custom"
  6775. }
  6776. ],
  6777. "time": "2020-09-20T10:58:47+00:00"
  6778. },
  6779. {
  6780. "name": "andrey-helldar/pretty-array",
  6781. "version": "v1.4.3",
  6782. "source": {
  6783. "type": "git",
  6784. "url": "https://github.com/andrey-helldar/pretty-array.git",
  6785. "reference": "9a173df74949d8206a03d96999f0c838ca4e82c4"
  6786. },
  6787. "dist": {
  6788. "type": "zip",
  6789. "url": "https://api.github.com/repos/andrey-helldar/pretty-array/zipball/9a173df74949d8206a03d96999f0c838ca4e82c4",
  6790. "reference": "9a173df74949d8206a03d96999f0c838ca4e82c4",
  6791. "shasum": ""
  6792. },
  6793. "require": {
  6794. "andrey-helldar/support": "^1.16.0",
  6795. "ext-dom": "*",
  6796. "ext-mbstring": "*",
  6797. "php": "^7.1.3"
  6798. },
  6799. "require-dev": {
  6800. "phpstan/phpstan": "^0.12.7",
  6801. "phpunit/phpunit": "^7.0|^8.0"
  6802. },
  6803. "suggest": {
  6804. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  6805. },
  6806. "type": "library",
  6807. "autoload": {
  6808. "psr-4": {
  6809. "Helldar\\PrettyArray\\": "src/"
  6810. }
  6811. },
  6812. "notification-url": "https://packagist.org/downloads/",
  6813. "license": [
  6814. "MIT"
  6815. ],
  6816. "authors": [
  6817. {
  6818. "name": "Andrey Helldar",
  6819. "email": "helldar@ai-rus.com"
  6820. }
  6821. ],
  6822. "description": "Simple conversion of an array to a pretty view.",
  6823. "keywords": [
  6824. "array",
  6825. "pretty",
  6826. "pretty array"
  6827. ],
  6828. "funding": [
  6829. {
  6830. "url": "https://money.yandex.ru/to/410012115955701",
  6831. "type": "custom"
  6832. },
  6833. {
  6834. "url": "https://paypal.me/helldar",
  6835. "type": "custom"
  6836. }
  6837. ],
  6838. "time": "2020-07-24T15:19:50+00:00"
  6839. },
  6840. {
  6841. "name": "andrey-helldar/support",
  6842. "version": "v1.21.0",
  6843. "source": {
  6844. "type": "git",
  6845. "url": "https://github.com/andrey-helldar/support.git",
  6846. "reference": "3c1455584e4d1afc542f3da075987b54fc1ad05f"
  6847. },
  6848. "dist": {
  6849. "type": "zip",
  6850. "url": "https://api.github.com/repos/andrey-helldar/support/zipball/3c1455584e4d1afc542f3da075987b54fc1ad05f",
  6851. "reference": "3c1455584e4d1afc542f3da075987b54fc1ad05f",
  6852. "shasum": ""
  6853. },
  6854. "require": {
  6855. "ext-ctype": "*",
  6856. "ext-dom": "*",
  6857. "ext-json": "*",
  6858. "ext-mbstring": "*",
  6859. "php": "^7.1.3"
  6860. },
  6861. "require-dev": {
  6862. "ext-bcmath": "*",
  6863. "phpunit/phpunit": "^8.0|^9.0"
  6864. },
  6865. "suggest": {
  6866. "andrey-helldar/laravel-support": "Various helper files for the Laravel and Lumen frameworks",
  6867. "ext-bcmath": "Require the extension if you will be using Helldar\\Support\\Facades\\Digit.",
  6868. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  6869. },
  6870. "type": "library",
  6871. "extra": {
  6872. "laravel": {
  6873. "providers": [
  6874. "Helldar\\Support\\ServiceProvider"
  6875. ]
  6876. }
  6877. },
  6878. "autoload": {
  6879. "psr-4": {
  6880. "Helldar\\Support\\": "src/"
  6881. },
  6882. "files": [
  6883. "src/helpers/digit.php",
  6884. "src/helpers/dumper.php",
  6885. "src/helpers/http.php",
  6886. "src/helpers/strings.php"
  6887. ]
  6888. },
  6889. "notification-url": "https://packagist.org/downloads/",
  6890. "license": [
  6891. "MIT"
  6892. ],
  6893. "authors": [
  6894. {
  6895. "name": "Andrey Helldar",
  6896. "email": "helldar@ai-rus.com"
  6897. }
  6898. ],
  6899. "description": "Support package is a collection of helpers and tools for projects.",
  6900. "keywords": [
  6901. "framework",
  6902. "laravel",
  6903. "support",
  6904. "symfony",
  6905. "yii",
  6906. "yii2"
  6907. ],
  6908. "funding": [
  6909. {
  6910. "url": "https://money.yandex.ru/to/410012115955701",
  6911. "type": "custom"
  6912. },
  6913. {
  6914. "url": "https://paypal.me/helldar",
  6915. "type": "custom"
  6916. }
  6917. ],
  6918. "time": "2020-07-24T14:17:57+00:00"
  6919. },
  6920. {
  6921. "name": "arcanedev/laravel-lang",
  6922. "version": "8.0.0",
  6923. "source": {
  6924. "type": "git",
  6925. "url": "https://github.com/ARCANEDEV/LaravelLang.git",
  6926. "reference": "8b1711a37bbab081973920ad19a729dc0df2ca4b"
  6927. },
  6928. "dist": {
  6929. "type": "zip",
  6930. "url": "https://api.github.com/repos/ARCANEDEV/LaravelLang/zipball/8b1711a37bbab081973920ad19a729dc0df2ca4b",
  6931. "reference": "8b1711a37bbab081973920ad19a729dc0df2ca4b",
  6932. "shasum": ""
  6933. },
  6934. "require": {
  6935. "arcanedev/support": "^7.1.2",
  6936. "caouecs/laravel-lang": "^6.0",
  6937. "php": "^7.2.5"
  6938. },
  6939. "require-dev": {
  6940. "mockery/mockery": "^1.3.1",
  6941. "orchestra/testbench": "^5.0",
  6942. "phpunit/phpunit": "^8.5|^9.0"
  6943. },
  6944. "type": "library",
  6945. "extra": {
  6946. "laravel": {
  6947. "providers": [
  6948. "Arcanedev\\LaravelLang\\LaravelLangServiceProvider",
  6949. "Arcanedev\\LaravelLang\\Providers\\DeferredServicesProvider",
  6950. "Arcanedev\\LaravelLang\\Providers\\TranslationServiceProvider"
  6951. ]
  6952. }
  6953. },
  6954. "autoload": {
  6955. "psr-4": {
  6956. "Arcanedev\\LaravelLang\\": "src/"
  6957. }
  6958. },
  6959. "notification-url": "https://packagist.org/downloads/",
  6960. "license": [
  6961. "MIT"
  6962. ],
  6963. "authors": [
  6964. {
  6965. "name": "ARCANEDEV",
  6966. "email": "arcanedev.maroc@gmail.com",
  6967. "homepage": "https://github.com/arcanedev-maroc",
  6968. "role": "Developer"
  6969. }
  6970. ],
  6971. "description": "Translations manager and checker for Laravel 5 based on 'caouecs/laravel4-lang' package.",
  6972. "homepage": "https://github.com/ARCANEDEV/LaravelLang",
  6973. "keywords": [
  6974. "arcanedev",
  6975. "lang",
  6976. "languages",
  6977. "laravel",
  6978. "localisation",
  6979. "localization",
  6980. "trans",
  6981. "translations",
  6982. "validations"
  6983. ],
  6984. "time": "2020-03-21T21:29:29+00:00"
  6985. },
  6986. {
  6987. "name": "arcanedev/support",
  6988. "version": "7.1.2",
  6989. "source": {
  6990. "type": "git",
  6991. "url": "https://github.com/ARCANEDEV/Support.git",
  6992. "reference": "7e4199d30f04c611ba5d895e663f111c217ff5a3"
  6993. },
  6994. "dist": {
  6995. "type": "zip",
  6996. "url": "https://api.github.com/repos/ARCANEDEV/Support/zipball/7e4199d30f04c611ba5d895e663f111c217ff5a3",
  6997. "reference": "7e4199d30f04c611ba5d895e663f111c217ff5a3",
  6998. "shasum": ""
  6999. },
  7000. "require": {
  7001. "illuminate/filesystem": "^7.0",
  7002. "illuminate/support": "^7.0",
  7003. "php": "^7.2.5"
  7004. },
  7005. "require-dev": {
  7006. "orchestra/testbench": "^5.0",
  7007. "phpunit/phpunit": "^8.0|^9.0"
  7008. },
  7009. "type": "library",
  7010. "extra": {
  7011. "branch-alias": {
  7012. "dev-master": "7.x-dev"
  7013. }
  7014. },
  7015. "autoload": {
  7016. "psr-4": {
  7017. "Arcanedev\\Support\\": "src/"
  7018. },
  7019. "files": [
  7020. "helpers.php"
  7021. ]
  7022. },
  7023. "notification-url": "https://packagist.org/downloads/",
  7024. "license": [
  7025. "MIT"
  7026. ],
  7027. "authors": [
  7028. {
  7029. "name": "ARCANEDEV",
  7030. "email": "arcanedev.maroc@gmail.com",
  7031. "homepage": "https://github.com/arcanedev-maroc"
  7032. }
  7033. ],
  7034. "description": "ARCANEDEV Support Helpers",
  7035. "homepage": "https://github.com/ARCANEDEV/Support",
  7036. "keywords": [
  7037. "arcanedev",
  7038. "arcanesoft",
  7039. "laravel",
  7040. "support"
  7041. ],
  7042. "time": "2020-03-12T09:28:19+00:00"
  7043. },
  7044. {
  7045. "name": "barryvdh/laravel-debugbar",
  7046. "version": "v3.5.1",
  7047. "source": {
  7048. "type": "git",
  7049. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  7050. "reference": "233c10688f4c1a6e66ed2ef123038b1363d1bedc"
  7051. },
  7052. "dist": {
  7053. "type": "zip",
  7054. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/233c10688f4c1a6e66ed2ef123038b1363d1bedc",
  7055. "reference": "233c10688f4c1a6e66ed2ef123038b1363d1bedc",
  7056. "shasum": ""
  7057. },
  7058. "require": {
  7059. "illuminate/routing": "^6|^7|^8",
  7060. "illuminate/session": "^6|^7|^8",
  7061. "illuminate/support": "^6|^7|^8",
  7062. "maximebf/debugbar": "^1.16.3",
  7063. "php": ">=7.2",
  7064. "symfony/debug": "^4.3|^5",
  7065. "symfony/finder": "^4.3|^5"
  7066. },
  7067. "require-dev": {
  7068. "orchestra/testbench-dusk": "^4|^5|^6",
  7069. "phpunit/phpunit": "^8.5|^9.0",
  7070. "squizlabs/php_codesniffer": "^3.5"
  7071. },
  7072. "type": "library",
  7073. "extra": {
  7074. "branch-alias": {
  7075. "dev-master": "3.5-dev"
  7076. },
  7077. "laravel": {
  7078. "providers": [
  7079. "Barryvdh\\Debugbar\\ServiceProvider"
  7080. ],
  7081. "aliases": {
  7082. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  7083. }
  7084. }
  7085. },
  7086. "autoload": {
  7087. "psr-4": {
  7088. "Barryvdh\\Debugbar\\": "src/"
  7089. },
  7090. "files": [
  7091. "src/helpers.php"
  7092. ]
  7093. },
  7094. "notification-url": "https://packagist.org/downloads/",
  7095. "license": [
  7096. "MIT"
  7097. ],
  7098. "authors": [
  7099. {
  7100. "name": "Barry vd. Heuvel",
  7101. "email": "barryvdh@gmail.com"
  7102. }
  7103. ],
  7104. "description": "PHP Debugbar integration for Laravel",
  7105. "keywords": [
  7106. "debug",
  7107. "debugbar",
  7108. "laravel",
  7109. "profiler",
  7110. "webprofiler"
  7111. ],
  7112. "funding": [
  7113. {
  7114. "url": "https://github.com/barryvdh",
  7115. "type": "github"
  7116. }
  7117. ],
  7118. "time": "2020-09-07T19:32:39+00:00"
  7119. },
  7120. {
  7121. "name": "barryvdh/laravel-ide-helper",
  7122. "version": "v2.8.1",
  7123. "source": {
  7124. "type": "git",
  7125. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  7126. "reference": "affa55122f83575888d4ebf1728992686e8223de"
  7127. },
  7128. "dist": {
  7129. "type": "zip",
  7130. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/affa55122f83575888d4ebf1728992686e8223de",
  7131. "reference": "affa55122f83575888d4ebf1728992686e8223de",
  7132. "shasum": ""
  7133. },
  7134. "require": {
  7135. "barryvdh/reflection-docblock": "^2.0.6",
  7136. "composer/composer": "^1.6 || ^2.0@dev",
  7137. "doctrine/dbal": "~2.3",
  7138. "ext-json": "*",
  7139. "illuminate/console": "^6 || ^7 || ^8",
  7140. "illuminate/filesystem": "^6 || ^7 || ^8",
  7141. "illuminate/support": "^6 || ^7 || ^8",
  7142. "php": ">=7.2",
  7143. "phpdocumentor/type-resolver": "^1.1.0"
  7144. },
  7145. "require-dev": {
  7146. "friendsofphp/php-cs-fixer": "^2",
  7147. "illuminate/config": "^6 || ^7 || ^8",
  7148. "illuminate/view": "^6 || ^7 || ^8",
  7149. "mockery/mockery": "^1.3",
  7150. "orchestra/testbench": "^4 || ^5 || ^6",
  7151. "phpunit/phpunit": "^8.5 || ^9",
  7152. "spatie/phpunit-snapshot-assertions": "^1.4 || ^2.2 || ^3",
  7153. "vimeo/psalm": "^3.12"
  7154. },
  7155. "type": "library",
  7156. "extra": {
  7157. "branch-alias": {
  7158. "dev-master": "2.8-dev"
  7159. },
  7160. "laravel": {
  7161. "providers": [
  7162. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  7163. ]
  7164. }
  7165. },
  7166. "autoload": {
  7167. "psr-4": {
  7168. "Barryvdh\\LaravelIdeHelper\\": "src"
  7169. }
  7170. },
  7171. "notification-url": "https://packagist.org/downloads/",
  7172. "license": [
  7173. "MIT"
  7174. ],
  7175. "authors": [
  7176. {
  7177. "name": "Barry vd. Heuvel",
  7178. "email": "barryvdh@gmail.com"
  7179. }
  7180. ],
  7181. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  7182. "keywords": [
  7183. "autocomplete",
  7184. "codeintel",
  7185. "helper",
  7186. "ide",
  7187. "laravel",
  7188. "netbeans",
  7189. "phpdoc",
  7190. "phpstorm",
  7191. "sublime"
  7192. ],
  7193. "funding": [
  7194. {
  7195. "url": "https://github.com/barryvdh",
  7196. "type": "github"
  7197. }
  7198. ],
  7199. "time": "2020-09-07T07:36:37+00:00"
  7200. },
  7201. {
  7202. "name": "barryvdh/reflection-docblock",
  7203. "version": "v2.0.6",
  7204. "source": {
  7205. "type": "git",
  7206. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  7207. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  7208. },
  7209. "dist": {
  7210. "type": "zip",
  7211. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  7212. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  7213. "shasum": ""
  7214. },
  7215. "require": {
  7216. "php": ">=5.3.3"
  7217. },
  7218. "require-dev": {
  7219. "phpunit/phpunit": "~4.0,<4.5"
  7220. },
  7221. "suggest": {
  7222. "dflydev/markdown": "~1.0",
  7223. "erusev/parsedown": "~1.0"
  7224. },
  7225. "type": "library",
  7226. "extra": {
  7227. "branch-alias": {
  7228. "dev-master": "2.0.x-dev"
  7229. }
  7230. },
  7231. "autoload": {
  7232. "psr-0": {
  7233. "Barryvdh": [
  7234. "src/"
  7235. ]
  7236. }
  7237. },
  7238. "notification-url": "https://packagist.org/downloads/",
  7239. "license": [
  7240. "MIT"
  7241. ],
  7242. "authors": [
  7243. {
  7244. "name": "Mike van Riel",
  7245. "email": "mike.vanriel@naenius.com"
  7246. }
  7247. ],
  7248. "time": "2018-12-13T10:34:14+00:00"
  7249. },
  7250. {
  7251. "name": "caouecs/laravel-lang",
  7252. "version": "6.1.4",
  7253. "source": {
  7254. "type": "git",
  7255. "url": "https://github.com/caouecs/lang.git",
  7256. "reference": "18a7845e813e737a56a7f164301d5014b536950c"
  7257. },
  7258. "dist": {
  7259. "type": "zip",
  7260. "url": "https://api.github.com/repos/caouecs/lang/zipball/18a7845e813e737a56a7f164301d5014b536950c",
  7261. "reference": "18a7845e813e737a56a7f164301d5014b536950c",
  7262. "shasum": ""
  7263. },
  7264. "require": {
  7265. "ext-json": "*"
  7266. },
  7267. "suggest": {
  7268. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  7269. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  7270. "overtrue/laravel-lang": "Command to add languages in your project"
  7271. },
  7272. "type": "library",
  7273. "notification-url": "https://packagist.org/downloads/",
  7274. "license": [
  7275. "MIT"
  7276. ],
  7277. "authors": [
  7278. {
  7279. "name": "caouecs",
  7280. "email": "caouecs@caouecs.net"
  7281. }
  7282. ],
  7283. "description": "Languages for Laravel",
  7284. "keywords": [
  7285. "lang",
  7286. "languages",
  7287. "laravel",
  7288. "lpm"
  7289. ],
  7290. "abandoned": "https://github.com/Laravel-Lang/lang",
  7291. "time": "2020-07-13T14:35:32+00:00"
  7292. },
  7293. {
  7294. "name": "composer/composer",
  7295. "version": "1.10.13",
  7296. "source": {
  7297. "type": "git",
  7298. "url": "https://github.com/composer/composer.git",
  7299. "reference": "47c841ba3b2d3fc0b4b13282cf029ea18b66d78b"
  7300. },
  7301. "dist": {
  7302. "type": "zip",
  7303. "url": "https://api.github.com/repos/composer/composer/zipball/47c841ba3b2d3fc0b4b13282cf029ea18b66d78b",
  7304. "reference": "47c841ba3b2d3fc0b4b13282cf029ea18b66d78b",
  7305. "shasum": ""
  7306. },
  7307. "require": {
  7308. "composer/ca-bundle": "^1.0",
  7309. "composer/semver": "^1.0",
  7310. "composer/spdx-licenses": "^1.2",
  7311. "composer/xdebug-handler": "^1.1",
  7312. "justinrainbow/json-schema": "^5.2.10",
  7313. "php": "^5.3.2 || ^7.0",
  7314. "psr/log": "^1.0",
  7315. "seld/jsonlint": "^1.4",
  7316. "seld/phar-utils": "^1.0",
  7317. "symfony/console": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  7318. "symfony/filesystem": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  7319. "symfony/finder": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  7320. "symfony/process": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  7321. },
  7322. "conflict": {
  7323. "symfony/console": "2.8.38"
  7324. },
  7325. "require-dev": {
  7326. "phpspec/prophecy": "^1.10",
  7327. "symfony/phpunit-bridge": "^4.2"
  7328. },
  7329. "suggest": {
  7330. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  7331. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  7332. "ext-zlib": "Allow gzip compression of HTTP requests"
  7333. },
  7334. "bin": [
  7335. "bin/composer"
  7336. ],
  7337. "type": "library",
  7338. "extra": {
  7339. "branch-alias": {
  7340. "dev-master": "1.10-dev"
  7341. }
  7342. },
  7343. "autoload": {
  7344. "psr-4": {
  7345. "Composer\\": "src/Composer"
  7346. }
  7347. },
  7348. "notification-url": "https://packagist.org/downloads/",
  7349. "license": [
  7350. "MIT"
  7351. ],
  7352. "authors": [
  7353. {
  7354. "name": "Nils Adermann",
  7355. "email": "naderman@naderman.de",
  7356. "homepage": "http://www.naderman.de"
  7357. },
  7358. {
  7359. "name": "Jordi Boggiano",
  7360. "email": "j.boggiano@seld.be",
  7361. "homepage": "http://seld.be"
  7362. }
  7363. ],
  7364. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  7365. "homepage": "https://getcomposer.org/",
  7366. "keywords": [
  7367. "autoload",
  7368. "dependency",
  7369. "package"
  7370. ],
  7371. "support": {
  7372. "irc": "irc://irc.freenode.org/composer",
  7373. "issues": "https://github.com/composer/composer/issues",
  7374. "source": "https://github.com/composer/composer/tree/1.10.13"
  7375. },
  7376. "funding": [
  7377. {
  7378. "url": "https://packagist.com",
  7379. "type": "custom"
  7380. },
  7381. {
  7382. "url": "https://github.com/composer",
  7383. "type": "github"
  7384. },
  7385. {
  7386. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7387. "type": "tidelift"
  7388. }
  7389. ],
  7390. "time": "2020-09-09T09:46:34+00:00"
  7391. },
  7392. {
  7393. "name": "composer/semver",
  7394. "version": "1.7.1",
  7395. "source": {
  7396. "type": "git",
  7397. "url": "https://github.com/composer/semver.git",
  7398. "reference": "38276325bd896f90dfcfe30029aa5db40df387a7"
  7399. },
  7400. "dist": {
  7401. "type": "zip",
  7402. "url": "https://api.github.com/repos/composer/semver/zipball/38276325bd896f90dfcfe30029aa5db40df387a7",
  7403. "reference": "38276325bd896f90dfcfe30029aa5db40df387a7",
  7404. "shasum": ""
  7405. },
  7406. "require": {
  7407. "php": "^5.3.2 || ^7.0"
  7408. },
  7409. "require-dev": {
  7410. "phpunit/phpunit": "^4.5 || ^5.0.5"
  7411. },
  7412. "type": "library",
  7413. "extra": {
  7414. "branch-alias": {
  7415. "dev-master": "1.x-dev"
  7416. }
  7417. },
  7418. "autoload": {
  7419. "psr-4": {
  7420. "Composer\\Semver\\": "src"
  7421. }
  7422. },
  7423. "notification-url": "https://packagist.org/downloads/",
  7424. "license": [
  7425. "MIT"
  7426. ],
  7427. "authors": [
  7428. {
  7429. "name": "Nils Adermann",
  7430. "email": "naderman@naderman.de",
  7431. "homepage": "http://www.naderman.de"
  7432. },
  7433. {
  7434. "name": "Jordi Boggiano",
  7435. "email": "j.boggiano@seld.be",
  7436. "homepage": "http://seld.be"
  7437. },
  7438. {
  7439. "name": "Rob Bast",
  7440. "email": "rob.bast@gmail.com",
  7441. "homepage": "http://robbast.nl"
  7442. }
  7443. ],
  7444. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  7445. "keywords": [
  7446. "semantic",
  7447. "semver",
  7448. "validation",
  7449. "versioning"
  7450. ],
  7451. "funding": [
  7452. {
  7453. "url": "https://packagist.com",
  7454. "type": "custom"
  7455. },
  7456. {
  7457. "url": "https://github.com/composer",
  7458. "type": "github"
  7459. },
  7460. {
  7461. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7462. "type": "tidelift"
  7463. }
  7464. ],
  7465. "time": "2020-09-27T13:13:07+00:00"
  7466. },
  7467. {
  7468. "name": "composer/spdx-licenses",
  7469. "version": "1.5.4",
  7470. "source": {
  7471. "type": "git",
  7472. "url": "https://github.com/composer/spdx-licenses.git",
  7473. "reference": "6946f785871e2314c60b4524851f3702ea4f2223"
  7474. },
  7475. "dist": {
  7476. "type": "zip",
  7477. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/6946f785871e2314c60b4524851f3702ea4f2223",
  7478. "reference": "6946f785871e2314c60b4524851f3702ea4f2223",
  7479. "shasum": ""
  7480. },
  7481. "require": {
  7482. "php": "^5.3.2 || ^7.0 || ^8.0"
  7483. },
  7484. "require-dev": {
  7485. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
  7486. },
  7487. "type": "library",
  7488. "extra": {
  7489. "branch-alias": {
  7490. "dev-master": "1.x-dev"
  7491. }
  7492. },
  7493. "autoload": {
  7494. "psr-4": {
  7495. "Composer\\Spdx\\": "src"
  7496. }
  7497. },
  7498. "notification-url": "https://packagist.org/downloads/",
  7499. "license": [
  7500. "MIT"
  7501. ],
  7502. "authors": [
  7503. {
  7504. "name": "Nils Adermann",
  7505. "email": "naderman@naderman.de",
  7506. "homepage": "http://www.naderman.de"
  7507. },
  7508. {
  7509. "name": "Jordi Boggiano",
  7510. "email": "j.boggiano@seld.be",
  7511. "homepage": "http://seld.be"
  7512. },
  7513. {
  7514. "name": "Rob Bast",
  7515. "email": "rob.bast@gmail.com",
  7516. "homepage": "http://robbast.nl"
  7517. }
  7518. ],
  7519. "description": "SPDX licenses list and validation library.",
  7520. "keywords": [
  7521. "license",
  7522. "spdx",
  7523. "validator"
  7524. ],
  7525. "funding": [
  7526. {
  7527. "url": "https://packagist.com",
  7528. "type": "custom"
  7529. },
  7530. {
  7531. "url": "https://github.com/composer",
  7532. "type": "github"
  7533. },
  7534. {
  7535. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7536. "type": "tidelift"
  7537. }
  7538. ],
  7539. "time": "2020-07-15T15:35:07+00:00"
  7540. },
  7541. {
  7542. "name": "composer/xdebug-handler",
  7543. "version": "1.4.3",
  7544. "source": {
  7545. "type": "git",
  7546. "url": "https://github.com/composer/xdebug-handler.git",
  7547. "reference": "ebd27a9866ae8254e873866f795491f02418c5a5"
  7548. },
  7549. "dist": {
  7550. "type": "zip",
  7551. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ebd27a9866ae8254e873866f795491f02418c5a5",
  7552. "reference": "ebd27a9866ae8254e873866f795491f02418c5a5",
  7553. "shasum": ""
  7554. },
  7555. "require": {
  7556. "php": "^5.3.2 || ^7.0 || ^8.0",
  7557. "psr/log": "^1.0"
  7558. },
  7559. "require-dev": {
  7560. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
  7561. },
  7562. "type": "library",
  7563. "autoload": {
  7564. "psr-4": {
  7565. "Composer\\XdebugHandler\\": "src"
  7566. }
  7567. },
  7568. "notification-url": "https://packagist.org/downloads/",
  7569. "license": [
  7570. "MIT"
  7571. ],
  7572. "authors": [
  7573. {
  7574. "name": "John Stevenson",
  7575. "email": "john-stevenson@blueyonder.co.uk"
  7576. }
  7577. ],
  7578. "description": "Restarts a process without Xdebug.",
  7579. "keywords": [
  7580. "Xdebug",
  7581. "performance"
  7582. ],
  7583. "funding": [
  7584. {
  7585. "url": "https://packagist.com",
  7586. "type": "custom"
  7587. },
  7588. {
  7589. "url": "https://github.com/composer",
  7590. "type": "github"
  7591. },
  7592. {
  7593. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7594. "type": "tidelift"
  7595. }
  7596. ],
  7597. "time": "2020-08-19T10:27:58+00:00"
  7598. },
  7599. {
  7600. "name": "doctrine/cache",
  7601. "version": "1.10.2",
  7602. "source": {
  7603. "type": "git",
  7604. "url": "https://github.com/doctrine/cache.git",
  7605. "reference": "13e3381b25847283a91948d04640543941309727"
  7606. },
  7607. "dist": {
  7608. "type": "zip",
  7609. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  7610. "reference": "13e3381b25847283a91948d04640543941309727",
  7611. "shasum": ""
  7612. },
  7613. "require": {
  7614. "php": "~7.1 || ^8.0"
  7615. },
  7616. "conflict": {
  7617. "doctrine/common": ">2.2,<2.4"
  7618. },
  7619. "require-dev": {
  7620. "alcaeus/mongo-php-adapter": "^1.1",
  7621. "doctrine/coding-standard": "^6.0",
  7622. "mongodb/mongodb": "^1.1",
  7623. "phpunit/phpunit": "^7.0",
  7624. "predis/predis": "~1.0"
  7625. },
  7626. "suggest": {
  7627. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  7628. },
  7629. "type": "library",
  7630. "extra": {
  7631. "branch-alias": {
  7632. "dev-master": "1.9.x-dev"
  7633. }
  7634. },
  7635. "autoload": {
  7636. "psr-4": {
  7637. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  7638. }
  7639. },
  7640. "notification-url": "https://packagist.org/downloads/",
  7641. "license": [
  7642. "MIT"
  7643. ],
  7644. "authors": [
  7645. {
  7646. "name": "Guilherme Blanco",
  7647. "email": "guilhermeblanco@gmail.com"
  7648. },
  7649. {
  7650. "name": "Roman Borschel",
  7651. "email": "roman@code-factory.org"
  7652. },
  7653. {
  7654. "name": "Benjamin Eberlei",
  7655. "email": "kontakt@beberlei.de"
  7656. },
  7657. {
  7658. "name": "Jonathan Wage",
  7659. "email": "jonwage@gmail.com"
  7660. },
  7661. {
  7662. "name": "Johannes Schmitt",
  7663. "email": "schmittjoh@gmail.com"
  7664. }
  7665. ],
  7666. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  7667. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  7668. "keywords": [
  7669. "abstraction",
  7670. "apcu",
  7671. "cache",
  7672. "caching",
  7673. "couchdb",
  7674. "memcached",
  7675. "php",
  7676. "redis",
  7677. "xcache"
  7678. ],
  7679. "funding": [
  7680. {
  7681. "url": "https://www.doctrine-project.org/sponsorship.html",
  7682. "type": "custom"
  7683. },
  7684. {
  7685. "url": "https://www.patreon.com/phpdoctrine",
  7686. "type": "patreon"
  7687. },
  7688. {
  7689. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  7690. "type": "tidelift"
  7691. }
  7692. ],
  7693. "time": "2020-07-07T18:54:01+00:00"
  7694. },
  7695. {
  7696. "name": "doctrine/dbal",
  7697. "version": "2.11.1",
  7698. "source": {
  7699. "type": "git",
  7700. "url": "https://github.com/doctrine/dbal.git",
  7701. "reference": "6e6903cd5e3a5be60a79439e3ee8fe126f78fe86"
  7702. },
  7703. "dist": {
  7704. "type": "zip",
  7705. "url": "https://api.github.com/repos/doctrine/dbal/zipball/6e6903cd5e3a5be60a79439e3ee8fe126f78fe86",
  7706. "reference": "6e6903cd5e3a5be60a79439e3ee8fe126f78fe86",
  7707. "shasum": ""
  7708. },
  7709. "require": {
  7710. "doctrine/cache": "^1.0",
  7711. "doctrine/event-manager": "^1.0",
  7712. "ext-pdo": "*",
  7713. "php": "^7.3"
  7714. },
  7715. "require-dev": {
  7716. "doctrine/coding-standard": "^8.1",
  7717. "jetbrains/phpstorm-stubs": "^2019.1",
  7718. "nikic/php-parser": "^4.4",
  7719. "phpstan/phpstan": "^0.12.40",
  7720. "phpunit/phpunit": "^9.3",
  7721. "psalm/plugin-phpunit": "^0.10.0",
  7722. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  7723. "vimeo/psalm": "^3.14.2"
  7724. },
  7725. "suggest": {
  7726. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  7727. },
  7728. "bin": [
  7729. "bin/doctrine-dbal"
  7730. ],
  7731. "type": "library",
  7732. "extra": {
  7733. "branch-alias": {
  7734. "dev-master": "4.0.x-dev"
  7735. }
  7736. },
  7737. "autoload": {
  7738. "psr-4": {
  7739. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  7740. }
  7741. },
  7742. "notification-url": "https://packagist.org/downloads/",
  7743. "license": [
  7744. "MIT"
  7745. ],
  7746. "authors": [
  7747. {
  7748. "name": "Guilherme Blanco",
  7749. "email": "guilhermeblanco@gmail.com"
  7750. },
  7751. {
  7752. "name": "Roman Borschel",
  7753. "email": "roman@code-factory.org"
  7754. },
  7755. {
  7756. "name": "Benjamin Eberlei",
  7757. "email": "kontakt@beberlei.de"
  7758. },
  7759. {
  7760. "name": "Jonathan Wage",
  7761. "email": "jonwage@gmail.com"
  7762. }
  7763. ],
  7764. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  7765. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  7766. "keywords": [
  7767. "abstraction",
  7768. "database",
  7769. "db2",
  7770. "dbal",
  7771. "mariadb",
  7772. "mssql",
  7773. "mysql",
  7774. "oci8",
  7775. "oracle",
  7776. "pdo",
  7777. "pgsql",
  7778. "postgresql",
  7779. "queryobject",
  7780. "sasql",
  7781. "sql",
  7782. "sqlanywhere",
  7783. "sqlite",
  7784. "sqlserver",
  7785. "sqlsrv"
  7786. ],
  7787. "funding": [
  7788. {
  7789. "url": "https://www.doctrine-project.org/sponsorship.html",
  7790. "type": "custom"
  7791. },
  7792. {
  7793. "url": "https://www.patreon.com/phpdoctrine",
  7794. "type": "patreon"
  7795. },
  7796. {
  7797. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  7798. "type": "tidelift"
  7799. }
  7800. ],
  7801. "time": "2020-09-27T04:09:41+00:00"
  7802. },
  7803. {
  7804. "name": "doctrine/event-manager",
  7805. "version": "1.1.1",
  7806. "source": {
  7807. "type": "git",
  7808. "url": "https://github.com/doctrine/event-manager.git",
  7809. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  7810. },
  7811. "dist": {
  7812. "type": "zip",
  7813. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  7814. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  7815. "shasum": ""
  7816. },
  7817. "require": {
  7818. "php": "^7.1 || ^8.0"
  7819. },
  7820. "conflict": {
  7821. "doctrine/common": "<2.9@dev"
  7822. },
  7823. "require-dev": {
  7824. "doctrine/coding-standard": "^6.0",
  7825. "phpunit/phpunit": "^7.0"
  7826. },
  7827. "type": "library",
  7828. "extra": {
  7829. "branch-alias": {
  7830. "dev-master": "1.0.x-dev"
  7831. }
  7832. },
  7833. "autoload": {
  7834. "psr-4": {
  7835. "Doctrine\\Common\\": "lib/Doctrine/Common"
  7836. }
  7837. },
  7838. "notification-url": "https://packagist.org/downloads/",
  7839. "license": [
  7840. "MIT"
  7841. ],
  7842. "authors": [
  7843. {
  7844. "name": "Guilherme Blanco",
  7845. "email": "guilhermeblanco@gmail.com"
  7846. },
  7847. {
  7848. "name": "Roman Borschel",
  7849. "email": "roman@code-factory.org"
  7850. },
  7851. {
  7852. "name": "Benjamin Eberlei",
  7853. "email": "kontakt@beberlei.de"
  7854. },
  7855. {
  7856. "name": "Jonathan Wage",
  7857. "email": "jonwage@gmail.com"
  7858. },
  7859. {
  7860. "name": "Johannes Schmitt",
  7861. "email": "schmittjoh@gmail.com"
  7862. },
  7863. {
  7864. "name": "Marco Pivetta",
  7865. "email": "ocramius@gmail.com"
  7866. }
  7867. ],
  7868. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  7869. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  7870. "keywords": [
  7871. "event",
  7872. "event dispatcher",
  7873. "event manager",
  7874. "event system",
  7875. "events"
  7876. ],
  7877. "funding": [
  7878. {
  7879. "url": "https://www.doctrine-project.org/sponsorship.html",
  7880. "type": "custom"
  7881. },
  7882. {
  7883. "url": "https://www.patreon.com/phpdoctrine",
  7884. "type": "patreon"
  7885. },
  7886. {
  7887. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  7888. "type": "tidelift"
  7889. }
  7890. ],
  7891. "time": "2020-05-29T18:28:51+00:00"
  7892. },
  7893. {
  7894. "name": "doctrine/instantiator",
  7895. "version": "1.3.1",
  7896. "source": {
  7897. "type": "git",
  7898. "url": "https://github.com/doctrine/instantiator.git",
  7899. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea"
  7900. },
  7901. "dist": {
  7902. "type": "zip",
  7903. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/f350df0268e904597e3bd9c4685c53e0e333feea",
  7904. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea",
  7905. "shasum": ""
  7906. },
  7907. "require": {
  7908. "php": "^7.1 || ^8.0"
  7909. },
  7910. "require-dev": {
  7911. "doctrine/coding-standard": "^6.0",
  7912. "ext-pdo": "*",
  7913. "ext-phar": "*",
  7914. "phpbench/phpbench": "^0.13",
  7915. "phpstan/phpstan-phpunit": "^0.11",
  7916. "phpstan/phpstan-shim": "^0.11",
  7917. "phpunit/phpunit": "^7.0"
  7918. },
  7919. "type": "library",
  7920. "extra": {
  7921. "branch-alias": {
  7922. "dev-master": "1.2.x-dev"
  7923. }
  7924. },
  7925. "autoload": {
  7926. "psr-4": {
  7927. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  7928. }
  7929. },
  7930. "notification-url": "https://packagist.org/downloads/",
  7931. "license": [
  7932. "MIT"
  7933. ],
  7934. "authors": [
  7935. {
  7936. "name": "Marco Pivetta",
  7937. "email": "ocramius@gmail.com",
  7938. "homepage": "http://ocramius.github.com/"
  7939. }
  7940. ],
  7941. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  7942. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  7943. "keywords": [
  7944. "constructor",
  7945. "instantiate"
  7946. ],
  7947. "funding": [
  7948. {
  7949. "url": "https://www.doctrine-project.org/sponsorship.html",
  7950. "type": "custom"
  7951. },
  7952. {
  7953. "url": "https://www.patreon.com/phpdoctrine",
  7954. "type": "patreon"
  7955. },
  7956. {
  7957. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  7958. "type": "tidelift"
  7959. }
  7960. ],
  7961. "time": "2020-05-29T17:27:14+00:00"
  7962. },
  7963. {
  7964. "name": "facade/flare-client-php",
  7965. "version": "1.3.6",
  7966. "source": {
  7967. "type": "git",
  7968. "url": "https://github.com/facade/flare-client-php.git",
  7969. "reference": "451fadf38e9f635e7f8e1f5b3cf5c9eb82f11799"
  7970. },
  7971. "dist": {
  7972. "type": "zip",
  7973. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/451fadf38e9f635e7f8e1f5b3cf5c9eb82f11799",
  7974. "reference": "451fadf38e9f635e7f8e1f5b3cf5c9eb82f11799",
  7975. "shasum": ""
  7976. },
  7977. "require": {
  7978. "facade/ignition-contracts": "~1.0",
  7979. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  7980. "php": "^7.1",
  7981. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  7982. "symfony/mime": "^3.4|^4.0|^5.1",
  7983. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  7984. },
  7985. "require-dev": {
  7986. "friendsofphp/php-cs-fixer": "^2.14",
  7987. "phpunit/phpunit": "^7.5.16",
  7988. "spatie/phpunit-snapshot-assertions": "^2.0"
  7989. },
  7990. "type": "library",
  7991. "extra": {
  7992. "branch-alias": {
  7993. "dev-master": "1.0-dev"
  7994. }
  7995. },
  7996. "autoload": {
  7997. "psr-4": {
  7998. "Facade\\FlareClient\\": "src"
  7999. },
  8000. "files": [
  8001. "src/helpers.php"
  8002. ]
  8003. },
  8004. "notification-url": "https://packagist.org/downloads/",
  8005. "license": [
  8006. "MIT"
  8007. ],
  8008. "description": "Send PHP errors to Flare",
  8009. "homepage": "https://github.com/facade/flare-client-php",
  8010. "keywords": [
  8011. "exception",
  8012. "facade",
  8013. "flare",
  8014. "reporting"
  8015. ],
  8016. "funding": [
  8017. {
  8018. "url": "https://github.com/spatie",
  8019. "type": "github"
  8020. }
  8021. ],
  8022. "time": "2020-09-18T06:35:11+00:00"
  8023. },
  8024. {
  8025. "name": "facade/ignition",
  8026. "version": "2.3.7",
  8027. "source": {
  8028. "type": "git",
  8029. "url": "https://github.com/facade/ignition.git",
  8030. "reference": "b364db8860a63c1fb58b72b9718863c21df08762"
  8031. },
  8032. "dist": {
  8033. "type": "zip",
  8034. "url": "https://api.github.com/repos/facade/ignition/zipball/b364db8860a63c1fb58b72b9718863c21df08762",
  8035. "reference": "b364db8860a63c1fb58b72b9718863c21df08762",
  8036. "shasum": ""
  8037. },
  8038. "require": {
  8039. "ext-json": "*",
  8040. "ext-mbstring": "*",
  8041. "facade/flare-client-php": "^1.0",
  8042. "facade/ignition-contracts": "^1.0",
  8043. "filp/whoops": "^2.4",
  8044. "illuminate/support": "^7.0|^8.0",
  8045. "monolog/monolog": "^2.0",
  8046. "php": "^7.2.5",
  8047. "scrivo/highlight.php": "^9.15",
  8048. "symfony/console": "^5.0",
  8049. "symfony/var-dumper": "^5.0"
  8050. },
  8051. "require-dev": {
  8052. "friendsofphp/php-cs-fixer": "^2.14",
  8053. "mockery/mockery": "^1.3",
  8054. "orchestra/testbench": "^5.0|^6.0",
  8055. "psalm/plugin-laravel": "^1.2"
  8056. },
  8057. "suggest": {
  8058. "laravel/telescope": "^3.1"
  8059. },
  8060. "type": "library",
  8061. "extra": {
  8062. "branch-alias": {
  8063. "dev-master": "2.x-dev"
  8064. },
  8065. "laravel": {
  8066. "providers": [
  8067. "Facade\\Ignition\\IgnitionServiceProvider"
  8068. ],
  8069. "aliases": {
  8070. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8071. }
  8072. }
  8073. },
  8074. "autoload": {
  8075. "psr-4": {
  8076. "Facade\\Ignition\\": "src"
  8077. },
  8078. "files": [
  8079. "src/helpers.php"
  8080. ]
  8081. },
  8082. "notification-url": "https://packagist.org/downloads/",
  8083. "license": [
  8084. "MIT"
  8085. ],
  8086. "description": "A beautiful error page for Laravel applications.",
  8087. "homepage": "https://github.com/facade/ignition",
  8088. "keywords": [
  8089. "error",
  8090. "flare",
  8091. "laravel",
  8092. "page"
  8093. ],
  8094. "support": {
  8095. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8096. "forum": "https://twitter.com/flareappio",
  8097. "issues": "https://github.com/facade/ignition/issues",
  8098. "source": "https://github.com/facade/ignition"
  8099. },
  8100. "time": "2020-09-06T19:26:27+00:00"
  8101. },
  8102. {
  8103. "name": "facade/ignition-contracts",
  8104. "version": "1.0.1",
  8105. "source": {
  8106. "type": "git",
  8107. "url": "https://github.com/facade/ignition-contracts.git",
  8108. "reference": "aeab1ce8b68b188a43e81758e750151ad7da796b"
  8109. },
  8110. "dist": {
  8111. "type": "zip",
  8112. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/aeab1ce8b68b188a43e81758e750151ad7da796b",
  8113. "reference": "aeab1ce8b68b188a43e81758e750151ad7da796b",
  8114. "shasum": ""
  8115. },
  8116. "require": {
  8117. "php": "^7.1"
  8118. },
  8119. "require-dev": {
  8120. "friendsofphp/php-cs-fixer": "^2.14",
  8121. "phpunit/phpunit": "^7.5|^8.0",
  8122. "vimeo/psalm": "^3.12"
  8123. },
  8124. "type": "library",
  8125. "autoload": {
  8126. "psr-4": {
  8127. "Facade\\IgnitionContracts\\": "src"
  8128. }
  8129. },
  8130. "notification-url": "https://packagist.org/downloads/",
  8131. "license": [
  8132. "MIT"
  8133. ],
  8134. "authors": [
  8135. {
  8136. "name": "Freek Van der Herten",
  8137. "email": "freek@spatie.be",
  8138. "homepage": "https://flareapp.io",
  8139. "role": "Developer"
  8140. }
  8141. ],
  8142. "description": "Solution contracts for Ignition",
  8143. "homepage": "https://github.com/facade/ignition-contracts",
  8144. "keywords": [
  8145. "contracts",
  8146. "flare",
  8147. "ignition"
  8148. ],
  8149. "time": "2020-07-14T10:10:28+00:00"
  8150. },
  8151. {
  8152. "name": "filp/whoops",
  8153. "version": "2.7.3",
  8154. "source": {
  8155. "type": "git",
  8156. "url": "https://github.com/filp/whoops.git",
  8157. "reference": "5d5fe9bb3d656b514d455645b3addc5f7ba7714d"
  8158. },
  8159. "dist": {
  8160. "type": "zip",
  8161. "url": "https://api.github.com/repos/filp/whoops/zipball/5d5fe9bb3d656b514d455645b3addc5f7ba7714d",
  8162. "reference": "5d5fe9bb3d656b514d455645b3addc5f7ba7714d",
  8163. "shasum": ""
  8164. },
  8165. "require": {
  8166. "php": "^5.5.9 || ^7.0",
  8167. "psr/log": "^1.0.1"
  8168. },
  8169. "require-dev": {
  8170. "mockery/mockery": "^0.9 || ^1.0",
  8171. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0",
  8172. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8173. },
  8174. "suggest": {
  8175. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8176. "whoops/soap": "Formats errors as SOAP responses"
  8177. },
  8178. "type": "library",
  8179. "extra": {
  8180. "branch-alias": {
  8181. "dev-master": "2.6-dev"
  8182. }
  8183. },
  8184. "autoload": {
  8185. "psr-4": {
  8186. "Whoops\\": "src/Whoops/"
  8187. }
  8188. },
  8189. "notification-url": "https://packagist.org/downloads/",
  8190. "license": [
  8191. "MIT"
  8192. ],
  8193. "authors": [
  8194. {
  8195. "name": "Filipe Dobreira",
  8196. "homepage": "https://github.com/filp",
  8197. "role": "Developer"
  8198. }
  8199. ],
  8200. "description": "php error handling for cool kids",
  8201. "homepage": "https://filp.github.io/whoops/",
  8202. "keywords": [
  8203. "error",
  8204. "exception",
  8205. "handling",
  8206. "library",
  8207. "throwable",
  8208. "whoops"
  8209. ],
  8210. "time": "2020-06-14T09:00:00+00:00"
  8211. },
  8212. {
  8213. "name": "fzaninotto/faker",
  8214. "version": "v1.9.1",
  8215. "source": {
  8216. "type": "git",
  8217. "url": "https://github.com/fzaninotto/Faker.git",
  8218. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f"
  8219. },
  8220. "dist": {
  8221. "type": "zip",
  8222. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f",
  8223. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f",
  8224. "shasum": ""
  8225. },
  8226. "require": {
  8227. "php": "^5.3.3 || ^7.0"
  8228. },
  8229. "require-dev": {
  8230. "ext-intl": "*",
  8231. "phpunit/phpunit": "^4.8.35 || ^5.7",
  8232. "squizlabs/php_codesniffer": "^2.9.2"
  8233. },
  8234. "type": "library",
  8235. "extra": {
  8236. "branch-alias": {
  8237. "dev-master": "1.9-dev"
  8238. }
  8239. },
  8240. "autoload": {
  8241. "psr-4": {
  8242. "Faker\\": "src/Faker/"
  8243. }
  8244. },
  8245. "notification-url": "https://packagist.org/downloads/",
  8246. "license": [
  8247. "MIT"
  8248. ],
  8249. "authors": [
  8250. {
  8251. "name": "François Zaninotto"
  8252. }
  8253. ],
  8254. "description": "Faker is a PHP library that generates fake data for you.",
  8255. "keywords": [
  8256. "data",
  8257. "faker",
  8258. "fixtures"
  8259. ],
  8260. "time": "2019-12-12T13:22:17+00:00"
  8261. },
  8262. {
  8263. "name": "hamcrest/hamcrest-php",
  8264. "version": "v2.0.1",
  8265. "source": {
  8266. "type": "git",
  8267. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8268. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8269. },
  8270. "dist": {
  8271. "type": "zip",
  8272. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8273. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8274. "shasum": ""
  8275. },
  8276. "require": {
  8277. "php": "^5.3|^7.0|^8.0"
  8278. },
  8279. "replace": {
  8280. "cordoval/hamcrest-php": "*",
  8281. "davedevelopment/hamcrest-php": "*",
  8282. "kodova/hamcrest-php": "*"
  8283. },
  8284. "require-dev": {
  8285. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8286. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8287. },
  8288. "type": "library",
  8289. "extra": {
  8290. "branch-alias": {
  8291. "dev-master": "2.1-dev"
  8292. }
  8293. },
  8294. "autoload": {
  8295. "classmap": [
  8296. "hamcrest"
  8297. ]
  8298. },
  8299. "notification-url": "https://packagist.org/downloads/",
  8300. "license": [
  8301. "BSD-3-Clause"
  8302. ],
  8303. "description": "This is the PHP port of Hamcrest Matchers",
  8304. "keywords": [
  8305. "test"
  8306. ],
  8307. "time": "2020-07-09T08:09:16+00:00"
  8308. },
  8309. {
  8310. "name": "justinrainbow/json-schema",
  8311. "version": "5.2.10",
  8312. "source": {
  8313. "type": "git",
  8314. "url": "https://github.com/justinrainbow/json-schema.git",
  8315. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b"
  8316. },
  8317. "dist": {
  8318. "type": "zip",
  8319. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  8320. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  8321. "shasum": ""
  8322. },
  8323. "require": {
  8324. "php": ">=5.3.3"
  8325. },
  8326. "require-dev": {
  8327. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  8328. "json-schema/json-schema-test-suite": "1.2.0",
  8329. "phpunit/phpunit": "^4.8.35"
  8330. },
  8331. "bin": [
  8332. "bin/validate-json"
  8333. ],
  8334. "type": "library",
  8335. "extra": {
  8336. "branch-alias": {
  8337. "dev-master": "5.0.x-dev"
  8338. }
  8339. },
  8340. "autoload": {
  8341. "psr-4": {
  8342. "JsonSchema\\": "src/JsonSchema/"
  8343. }
  8344. },
  8345. "notification-url": "https://packagist.org/downloads/",
  8346. "license": [
  8347. "MIT"
  8348. ],
  8349. "authors": [
  8350. {
  8351. "name": "Bruno Prieto Reis",
  8352. "email": "bruno.p.reis@gmail.com"
  8353. },
  8354. {
  8355. "name": "Justin Rainbow",
  8356. "email": "justin.rainbow@gmail.com"
  8357. },
  8358. {
  8359. "name": "Igor Wiedler",
  8360. "email": "igor@wiedler.ch"
  8361. },
  8362. {
  8363. "name": "Robert Schönthal",
  8364. "email": "seroscho@googlemail.com"
  8365. }
  8366. ],
  8367. "description": "A library to validate a json schema.",
  8368. "homepage": "https://github.com/justinrainbow/json-schema",
  8369. "keywords": [
  8370. "json",
  8371. "schema"
  8372. ],
  8373. "time": "2020-05-27T16:41:55+00:00"
  8374. },
  8375. {
  8376. "name": "laravel/telescope",
  8377. "version": "v3.5.1",
  8378. "source": {
  8379. "type": "git",
  8380. "url": "https://github.com/laravel/telescope.git",
  8381. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5"
  8382. },
  8383. "dist": {
  8384. "type": "zip",
  8385. "url": "https://api.github.com/repos/laravel/telescope/zipball/a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  8386. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  8387. "shasum": ""
  8388. },
  8389. "require": {
  8390. "ext-json": "*",
  8391. "laravel/framework": "^6.0|^7.0",
  8392. "moontoast/math": "^1.1",
  8393. "php": "^7.2",
  8394. "symfony/var-dumper": "^4.4|^5.0"
  8395. },
  8396. "require-dev": {
  8397. "ext-gd": "*",
  8398. "orchestra/testbench": "^4.0|^5.0"
  8399. },
  8400. "type": "library",
  8401. "extra": {
  8402. "branch-alias": {
  8403. "dev-master": "3.x-dev"
  8404. },
  8405. "laravel": {
  8406. "providers": [
  8407. "Laravel\\Telescope\\TelescopeServiceProvider"
  8408. ]
  8409. }
  8410. },
  8411. "autoload": {
  8412. "psr-4": {
  8413. "Laravel\\Telescope\\": "src/"
  8414. }
  8415. },
  8416. "notification-url": "https://packagist.org/downloads/",
  8417. "license": [
  8418. "MIT"
  8419. ],
  8420. "authors": [
  8421. {
  8422. "name": "Taylor Otwell",
  8423. "email": "taylor@laravel.com"
  8424. },
  8425. {
  8426. "name": "Mohamed Said",
  8427. "email": "mohamed@laravel.com"
  8428. }
  8429. ],
  8430. "description": "An elegant debug assistant for the Laravel framework.",
  8431. "keywords": [
  8432. "debugging",
  8433. "laravel",
  8434. "monitoring"
  8435. ],
  8436. "time": "2020-07-28T19:12:33+00:00"
  8437. },
  8438. {
  8439. "name": "maximebf/debugbar",
  8440. "version": "v1.16.3",
  8441. "source": {
  8442. "type": "git",
  8443. "url": "https://github.com/maximebf/php-debugbar.git",
  8444. "reference": "1a1605b8e9bacb34cc0c6278206d699772e1d372"
  8445. },
  8446. "dist": {
  8447. "type": "zip",
  8448. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/1a1605b8e9bacb34cc0c6278206d699772e1d372",
  8449. "reference": "1a1605b8e9bacb34cc0c6278206d699772e1d372",
  8450. "shasum": ""
  8451. },
  8452. "require": {
  8453. "php": "^7.1",
  8454. "psr/log": "^1.0",
  8455. "symfony/var-dumper": "^2.6|^3|^4|^5"
  8456. },
  8457. "require-dev": {
  8458. "phpunit/phpunit": "^5"
  8459. },
  8460. "suggest": {
  8461. "kriswallsmith/assetic": "The best way to manage assets",
  8462. "monolog/monolog": "Log using Monolog",
  8463. "predis/predis": "Redis storage"
  8464. },
  8465. "type": "library",
  8466. "extra": {
  8467. "branch-alias": {
  8468. "dev-master": "1.16-dev"
  8469. }
  8470. },
  8471. "autoload": {
  8472. "psr-4": {
  8473. "DebugBar\\": "src/DebugBar/"
  8474. }
  8475. },
  8476. "notification-url": "https://packagist.org/downloads/",
  8477. "license": [
  8478. "MIT"
  8479. ],
  8480. "authors": [
  8481. {
  8482. "name": "Maxime Bouroumeau-Fuseau",
  8483. "email": "maxime.bouroumeau@gmail.com",
  8484. "homepage": "http://maximebf.com"
  8485. },
  8486. {
  8487. "name": "Barry vd. Heuvel",
  8488. "email": "barryvdh@gmail.com"
  8489. }
  8490. ],
  8491. "description": "Debug bar in the browser for php application",
  8492. "homepage": "https://github.com/maximebf/php-debugbar",
  8493. "keywords": [
  8494. "debug",
  8495. "debugbar"
  8496. ],
  8497. "time": "2020-05-06T07:06:27+00:00"
  8498. },
  8499. {
  8500. "name": "mockery/mockery",
  8501. "version": "1.4.2",
  8502. "source": {
  8503. "type": "git",
  8504. "url": "https://github.com/mockery/mockery.git",
  8505. "reference": "20cab678faed06fac225193be281ea0fddb43b93"
  8506. },
  8507. "dist": {
  8508. "type": "zip",
  8509. "url": "https://api.github.com/repos/mockery/mockery/zipball/20cab678faed06fac225193be281ea0fddb43b93",
  8510. "reference": "20cab678faed06fac225193be281ea0fddb43b93",
  8511. "shasum": ""
  8512. },
  8513. "require": {
  8514. "hamcrest/hamcrest-php": "^2.0.1",
  8515. "lib-pcre": ">=7.0",
  8516. "php": "^7.3 || ^8.0"
  8517. },
  8518. "conflict": {
  8519. "phpunit/phpunit": "<8.0"
  8520. },
  8521. "require-dev": {
  8522. "phpunit/phpunit": "^8.5 || ^9.3"
  8523. },
  8524. "type": "library",
  8525. "extra": {
  8526. "branch-alias": {
  8527. "dev-master": "1.4.x-dev"
  8528. }
  8529. },
  8530. "autoload": {
  8531. "psr-0": {
  8532. "Mockery": "library/"
  8533. }
  8534. },
  8535. "notification-url": "https://packagist.org/downloads/",
  8536. "license": [
  8537. "BSD-3-Clause"
  8538. ],
  8539. "authors": [
  8540. {
  8541. "name": "Pádraic Brady",
  8542. "email": "padraic.brady@gmail.com",
  8543. "homepage": "http://blog.astrumfutura.com"
  8544. },
  8545. {
  8546. "name": "Dave Marshall",
  8547. "email": "dave.marshall@atstsolutions.co.uk",
  8548. "homepage": "http://davedevelopment.co.uk"
  8549. }
  8550. ],
  8551. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8552. "homepage": "https://github.com/mockery/mockery",
  8553. "keywords": [
  8554. "BDD",
  8555. "TDD",
  8556. "library",
  8557. "mock",
  8558. "mock objects",
  8559. "mockery",
  8560. "stub",
  8561. "test",
  8562. "test double",
  8563. "testing"
  8564. ],
  8565. "time": "2020-08-11T18:10:13+00:00"
  8566. },
  8567. {
  8568. "name": "moontoast/math",
  8569. "version": "1.2.1",
  8570. "source": {
  8571. "type": "git",
  8572. "url": "https://github.com/ramsey/moontoast-math.git",
  8573. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa"
  8574. },
  8575. "dist": {
  8576. "type": "zip",
  8577. "url": "https://api.github.com/repos/ramsey/moontoast-math/zipball/5f47d34c87767dbcc08b30377a9827df71de91fa",
  8578. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa",
  8579. "shasum": ""
  8580. },
  8581. "require": {
  8582. "php": ">=5.3.3",
  8583. "phpseclib/bcmath_compat": ">=1.0.3"
  8584. },
  8585. "require-dev": {
  8586. "jakub-onderka/php-parallel-lint": "^0.9.0",
  8587. "phpunit/phpunit": "^4.8 || ^5.5 || ^6.5 || ^7.0",
  8588. "satooshi/php-coveralls": "^0.6.1",
  8589. "squizlabs/php_codesniffer": "^2.3"
  8590. },
  8591. "type": "library",
  8592. "autoload": {
  8593. "psr-4": {
  8594. "Moontoast\\Math\\": "src/Moontoast/Math",
  8595. "Moontoast\\Math\\Exception\\": "src/Moontoast/Math/Exception"
  8596. }
  8597. },
  8598. "notification-url": "https://packagist.org/downloads/",
  8599. "license": [
  8600. "Apache-2.0"
  8601. ],
  8602. "authors": [
  8603. {
  8604. "name": "Ben Ramsey",
  8605. "email": "ben@benramsey.com",
  8606. "homepage": "https://benramsey.com"
  8607. }
  8608. ],
  8609. "description": "A mathematics library, providing functionality for large numbers",
  8610. "homepage": "https://github.com/ramsey/moontoast-math",
  8611. "keywords": [
  8612. "bcmath",
  8613. "math"
  8614. ],
  8615. "abandoned": "brick/math",
  8616. "time": "2020-01-05T04:49:34+00:00"
  8617. },
  8618. {
  8619. "name": "myclabs/deep-copy",
  8620. "version": "1.10.1",
  8621. "source": {
  8622. "type": "git",
  8623. "url": "https://github.com/myclabs/DeepCopy.git",
  8624. "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5"
  8625. },
  8626. "dist": {
  8627. "type": "zip",
  8628. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
  8629. "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
  8630. "shasum": ""
  8631. },
  8632. "require": {
  8633. "php": "^7.1 || ^8.0"
  8634. },
  8635. "replace": {
  8636. "myclabs/deep-copy": "self.version"
  8637. },
  8638. "require-dev": {
  8639. "doctrine/collections": "^1.0",
  8640. "doctrine/common": "^2.6",
  8641. "phpunit/phpunit": "^7.1"
  8642. },
  8643. "type": "library",
  8644. "autoload": {
  8645. "psr-4": {
  8646. "DeepCopy\\": "src/DeepCopy/"
  8647. },
  8648. "files": [
  8649. "src/DeepCopy/deep_copy.php"
  8650. ]
  8651. },
  8652. "notification-url": "https://packagist.org/downloads/",
  8653. "license": [
  8654. "MIT"
  8655. ],
  8656. "description": "Create deep copies (clones) of your objects",
  8657. "keywords": [
  8658. "clone",
  8659. "copy",
  8660. "duplicate",
  8661. "object",
  8662. "object graph"
  8663. ],
  8664. "funding": [
  8665. {
  8666. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8667. "type": "tidelift"
  8668. }
  8669. ],
  8670. "time": "2020-06-29T13:22:24+00:00"
  8671. },
  8672. {
  8673. "name": "nunomaduro/collision",
  8674. "version": "v4.2.0",
  8675. "source": {
  8676. "type": "git",
  8677. "url": "https://github.com/nunomaduro/collision.git",
  8678. "reference": "d50490417eded97be300a92cd7df7badc37a9018"
  8679. },
  8680. "dist": {
  8681. "type": "zip",
  8682. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/d50490417eded97be300a92cd7df7badc37a9018",
  8683. "reference": "d50490417eded97be300a92cd7df7badc37a9018",
  8684. "shasum": ""
  8685. },
  8686. "require": {
  8687. "facade/ignition-contracts": "^1.0",
  8688. "filp/whoops": "^2.4",
  8689. "php": "^7.2.5",
  8690. "symfony/console": "^5.0"
  8691. },
  8692. "require-dev": {
  8693. "facade/ignition": "^2.0",
  8694. "fideloper/proxy": "^4.2",
  8695. "friendsofphp/php-cs-fixer": "^2.16",
  8696. "fruitcake/laravel-cors": "^1.0",
  8697. "laravel/framework": "^7.0",
  8698. "laravel/tinker": "^2.0",
  8699. "nunomaduro/larastan": "^0.5",
  8700. "orchestra/testbench": "^5.0",
  8701. "phpstan/phpstan": "^0.12.3",
  8702. "phpunit/phpunit": "^8.5.1 || ^9.0"
  8703. },
  8704. "type": "library",
  8705. "extra": {
  8706. "laravel": {
  8707. "providers": [
  8708. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8709. ]
  8710. }
  8711. },
  8712. "autoload": {
  8713. "psr-4": {
  8714. "NunoMaduro\\Collision\\": "src/"
  8715. }
  8716. },
  8717. "notification-url": "https://packagist.org/downloads/",
  8718. "license": [
  8719. "MIT"
  8720. ],
  8721. "authors": [
  8722. {
  8723. "name": "Nuno Maduro",
  8724. "email": "enunomaduro@gmail.com"
  8725. }
  8726. ],
  8727. "description": "Cli error handling for console/command-line PHP applications.",
  8728. "keywords": [
  8729. "artisan",
  8730. "cli",
  8731. "command-line",
  8732. "console",
  8733. "error",
  8734. "handling",
  8735. "laravel",
  8736. "laravel-zero",
  8737. "php",
  8738. "symfony"
  8739. ],
  8740. "funding": [
  8741. {
  8742. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  8743. "type": "custom"
  8744. },
  8745. {
  8746. "url": "https://github.com/nunomaduro",
  8747. "type": "github"
  8748. },
  8749. {
  8750. "url": "https://www.patreon.com/nunomaduro",
  8751. "type": "patreon"
  8752. }
  8753. ],
  8754. "time": "2020-04-04T19:56:08+00:00"
  8755. },
  8756. {
  8757. "name": "phar-io/manifest",
  8758. "version": "1.0.3",
  8759. "source": {
  8760. "type": "git",
  8761. "url": "https://github.com/phar-io/manifest.git",
  8762. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  8763. },
  8764. "dist": {
  8765. "type": "zip",
  8766. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  8767. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  8768. "shasum": ""
  8769. },
  8770. "require": {
  8771. "ext-dom": "*",
  8772. "ext-phar": "*",
  8773. "phar-io/version": "^2.0",
  8774. "php": "^5.6 || ^7.0"
  8775. },
  8776. "type": "library",
  8777. "extra": {
  8778. "branch-alias": {
  8779. "dev-master": "1.0.x-dev"
  8780. }
  8781. },
  8782. "autoload": {
  8783. "classmap": [
  8784. "src/"
  8785. ]
  8786. },
  8787. "notification-url": "https://packagist.org/downloads/",
  8788. "license": [
  8789. "BSD-3-Clause"
  8790. ],
  8791. "authors": [
  8792. {
  8793. "name": "Arne Blankerts",
  8794. "email": "arne@blankerts.de",
  8795. "role": "Developer"
  8796. },
  8797. {
  8798. "name": "Sebastian Heuer",
  8799. "email": "sebastian@phpeople.de",
  8800. "role": "Developer"
  8801. },
  8802. {
  8803. "name": "Sebastian Bergmann",
  8804. "email": "sebastian@phpunit.de",
  8805. "role": "Developer"
  8806. }
  8807. ],
  8808. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8809. "time": "2018-07-08T19:23:20+00:00"
  8810. },
  8811. {
  8812. "name": "phar-io/version",
  8813. "version": "2.0.1",
  8814. "source": {
  8815. "type": "git",
  8816. "url": "https://github.com/phar-io/version.git",
  8817. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  8818. },
  8819. "dist": {
  8820. "type": "zip",
  8821. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  8822. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  8823. "shasum": ""
  8824. },
  8825. "require": {
  8826. "php": "^5.6 || ^7.0"
  8827. },
  8828. "type": "library",
  8829. "autoload": {
  8830. "classmap": [
  8831. "src/"
  8832. ]
  8833. },
  8834. "notification-url": "https://packagist.org/downloads/",
  8835. "license": [
  8836. "BSD-3-Clause"
  8837. ],
  8838. "authors": [
  8839. {
  8840. "name": "Arne Blankerts",
  8841. "email": "arne@blankerts.de",
  8842. "role": "Developer"
  8843. },
  8844. {
  8845. "name": "Sebastian Heuer",
  8846. "email": "sebastian@phpeople.de",
  8847. "role": "Developer"
  8848. },
  8849. {
  8850. "name": "Sebastian Bergmann",
  8851. "email": "sebastian@phpunit.de",
  8852. "role": "Developer"
  8853. }
  8854. ],
  8855. "description": "Library for handling version information and constraints",
  8856. "time": "2018-07-08T19:19:57+00:00"
  8857. },
  8858. {
  8859. "name": "phpdocumentor/reflection-common",
  8860. "version": "2.2.0",
  8861. "source": {
  8862. "type": "git",
  8863. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  8864. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  8865. },
  8866. "dist": {
  8867. "type": "zip",
  8868. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8869. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8870. "shasum": ""
  8871. },
  8872. "require": {
  8873. "php": "^7.2 || ^8.0"
  8874. },
  8875. "type": "library",
  8876. "extra": {
  8877. "branch-alias": {
  8878. "dev-2.x": "2.x-dev"
  8879. }
  8880. },
  8881. "autoload": {
  8882. "psr-4": {
  8883. "phpDocumentor\\Reflection\\": "src/"
  8884. }
  8885. },
  8886. "notification-url": "https://packagist.org/downloads/",
  8887. "license": [
  8888. "MIT"
  8889. ],
  8890. "authors": [
  8891. {
  8892. "name": "Jaap van Otterdijk",
  8893. "email": "opensource@ijaap.nl"
  8894. }
  8895. ],
  8896. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  8897. "homepage": "http://www.phpdoc.org",
  8898. "keywords": [
  8899. "FQSEN",
  8900. "phpDocumentor",
  8901. "phpdoc",
  8902. "reflection",
  8903. "static analysis"
  8904. ],
  8905. "time": "2020-06-27T09:03:43+00:00"
  8906. },
  8907. {
  8908. "name": "phpdocumentor/reflection-docblock",
  8909. "version": "5.2.2",
  8910. "source": {
  8911. "type": "git",
  8912. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  8913. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  8914. },
  8915. "dist": {
  8916. "type": "zip",
  8917. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  8918. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  8919. "shasum": ""
  8920. },
  8921. "require": {
  8922. "ext-filter": "*",
  8923. "php": "^7.2 || ^8.0",
  8924. "phpdocumentor/reflection-common": "^2.2",
  8925. "phpdocumentor/type-resolver": "^1.3",
  8926. "webmozart/assert": "^1.9.1"
  8927. },
  8928. "require-dev": {
  8929. "mockery/mockery": "~1.3.2"
  8930. },
  8931. "type": "library",
  8932. "extra": {
  8933. "branch-alias": {
  8934. "dev-master": "5.x-dev"
  8935. }
  8936. },
  8937. "autoload": {
  8938. "psr-4": {
  8939. "phpDocumentor\\Reflection\\": "src"
  8940. }
  8941. },
  8942. "notification-url": "https://packagist.org/downloads/",
  8943. "license": [
  8944. "MIT"
  8945. ],
  8946. "authors": [
  8947. {
  8948. "name": "Mike van Riel",
  8949. "email": "me@mikevanriel.com"
  8950. },
  8951. {
  8952. "name": "Jaap van Otterdijk",
  8953. "email": "account@ijaap.nl"
  8954. }
  8955. ],
  8956. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  8957. "time": "2020-09-03T19:13:55+00:00"
  8958. },
  8959. {
  8960. "name": "phpdocumentor/type-resolver",
  8961. "version": "1.4.0",
  8962. "source": {
  8963. "type": "git",
  8964. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  8965. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  8966. },
  8967. "dist": {
  8968. "type": "zip",
  8969. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  8970. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  8971. "shasum": ""
  8972. },
  8973. "require": {
  8974. "php": "^7.2 || ^8.0",
  8975. "phpdocumentor/reflection-common": "^2.0"
  8976. },
  8977. "require-dev": {
  8978. "ext-tokenizer": "*"
  8979. },
  8980. "type": "library",
  8981. "extra": {
  8982. "branch-alias": {
  8983. "dev-1.x": "1.x-dev"
  8984. }
  8985. },
  8986. "autoload": {
  8987. "psr-4": {
  8988. "phpDocumentor\\Reflection\\": "src"
  8989. }
  8990. },
  8991. "notification-url": "https://packagist.org/downloads/",
  8992. "license": [
  8993. "MIT"
  8994. ],
  8995. "authors": [
  8996. {
  8997. "name": "Mike van Riel",
  8998. "email": "me@mikevanriel.com"
  8999. }
  9000. ],
  9001. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  9002. "time": "2020-09-17T18:55:26+00:00"
  9003. },
  9004. {
  9005. "name": "phpseclib/bcmath_compat",
  9006. "version": "1.0.5",
  9007. "source": {
  9008. "type": "git",
  9009. "url": "https://github.com/phpseclib/bcmath_compat.git",
  9010. "reference": "89cbb63742a32730b7187773a60b6b12b9db4479"
  9011. },
  9012. "dist": {
  9013. "type": "zip",
  9014. "url": "https://api.github.com/repos/phpseclib/bcmath_compat/zipball/89cbb63742a32730b7187773a60b6b12b9db4479",
  9015. "reference": "89cbb63742a32730b7187773a60b6b12b9db4479",
  9016. "shasum": ""
  9017. },
  9018. "require": {
  9019. "phpseclib/phpseclib": ">=2.0.19"
  9020. },
  9021. "provide": {
  9022. "ext-bcmath": "7.3.5"
  9023. },
  9024. "require-dev": {
  9025. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  9026. "squizlabs/php_codesniffer": "^3.0"
  9027. },
  9028. "suggest": {
  9029. "ext-gmp": "Will enable faster math operations"
  9030. },
  9031. "type": "library",
  9032. "autoload": {
  9033. "files": [
  9034. "lib/bcmath.php"
  9035. ],
  9036. "psr-4": {
  9037. "bcmath_compat\\": "src"
  9038. }
  9039. },
  9040. "notification-url": "https://packagist.org/downloads/",
  9041. "license": [
  9042. "MIT"
  9043. ],
  9044. "authors": [
  9045. {
  9046. "name": "Jim Wigginton",
  9047. "email": "terrafrost@php.net",
  9048. "homepage": "http://phpseclib.sourceforge.net"
  9049. }
  9050. ],
  9051. "description": "PHP 5.x/7.x polyfill for bcmath extension",
  9052. "keywords": [
  9053. "BigInteger",
  9054. "bcmath",
  9055. "bigdecimal",
  9056. "math",
  9057. "polyfill"
  9058. ],
  9059. "time": "2020-04-26T16:34:33+00:00"
  9060. },
  9061. {
  9062. "name": "phpseclib/phpseclib",
  9063. "version": "2.0.29",
  9064. "source": {
  9065. "type": "git",
  9066. "url": "https://github.com/phpseclib/phpseclib.git",
  9067. "reference": "497856a8d997f640b4a516062f84228a772a48a8"
  9068. },
  9069. "dist": {
  9070. "type": "zip",
  9071. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/497856a8d997f640b4a516062f84228a772a48a8",
  9072. "reference": "497856a8d997f640b4a516062f84228a772a48a8",
  9073. "shasum": ""
  9074. },
  9075. "require": {
  9076. "php": ">=5.3.3"
  9077. },
  9078. "require-dev": {
  9079. "phing/phing": "~2.7",
  9080. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  9081. "squizlabs/php_codesniffer": "~2.0"
  9082. },
  9083. "suggest": {
  9084. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  9085. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  9086. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  9087. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  9088. },
  9089. "type": "library",
  9090. "autoload": {
  9091. "files": [
  9092. "phpseclib/bootstrap.php"
  9093. ],
  9094. "psr-4": {
  9095. "phpseclib\\": "phpseclib/"
  9096. }
  9097. },
  9098. "notification-url": "https://packagist.org/downloads/",
  9099. "license": [
  9100. "MIT"
  9101. ],
  9102. "authors": [
  9103. {
  9104. "name": "Jim Wigginton",
  9105. "email": "terrafrost@php.net",
  9106. "role": "Lead Developer"
  9107. },
  9108. {
  9109. "name": "Patrick Monnerat",
  9110. "email": "pm@datasphere.ch",
  9111. "role": "Developer"
  9112. },
  9113. {
  9114. "name": "Andreas Fischer",
  9115. "email": "bantu@phpbb.com",
  9116. "role": "Developer"
  9117. },
  9118. {
  9119. "name": "Hans-Jürgen Petrich",
  9120. "email": "petrich@tronic-media.com",
  9121. "role": "Developer"
  9122. },
  9123. {
  9124. "name": "Graham Campbell",
  9125. "email": "graham@alt-three.com",
  9126. "role": "Developer"
  9127. }
  9128. ],
  9129. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  9130. "homepage": "http://phpseclib.sourceforge.net",
  9131. "keywords": [
  9132. "BigInteger",
  9133. "aes",
  9134. "asn.1",
  9135. "asn1",
  9136. "blowfish",
  9137. "crypto",
  9138. "cryptography",
  9139. "encryption",
  9140. "rsa",
  9141. "security",
  9142. "sftp",
  9143. "signature",
  9144. "signing",
  9145. "ssh",
  9146. "twofish",
  9147. "x.509",
  9148. "x509"
  9149. ],
  9150. "support": {
  9151. "issues": "https://github.com/phpseclib/phpseclib/issues",
  9152. "source": "https://github.com/phpseclib/phpseclib/tree/2.0"
  9153. },
  9154. "funding": [
  9155. {
  9156. "url": "https://github.com/terrafrost",
  9157. "type": "github"
  9158. },
  9159. {
  9160. "url": "https://www.patreon.com/phpseclib",
  9161. "type": "patreon"
  9162. },
  9163. {
  9164. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  9165. "type": "tidelift"
  9166. }
  9167. ],
  9168. "time": "2020-09-08T04:24:43+00:00"
  9169. },
  9170. {
  9171. "name": "phpspec/prophecy",
  9172. "version": "1.12.1",
  9173. "source": {
  9174. "type": "git",
  9175. "url": "https://github.com/phpspec/prophecy.git",
  9176. "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d"
  9177. },
  9178. "dist": {
  9179. "type": "zip",
  9180. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/8ce87516be71aae9b956f81906aaf0338e0d8a2d",
  9181. "reference": "8ce87516be71aae9b956f81906aaf0338e0d8a2d",
  9182. "shasum": ""
  9183. },
  9184. "require": {
  9185. "doctrine/instantiator": "^1.2",
  9186. "php": "^7.2 || ~8.0, <8.1",
  9187. "phpdocumentor/reflection-docblock": "^5.2",
  9188. "sebastian/comparator": "^3.0 || ^4.0",
  9189. "sebastian/recursion-context": "^3.0 || ^4.0"
  9190. },
  9191. "require-dev": {
  9192. "phpspec/phpspec": "^6.0",
  9193. "phpunit/phpunit": "^8.0 || ^9.0 <9.3"
  9194. },
  9195. "type": "library",
  9196. "extra": {
  9197. "branch-alias": {
  9198. "dev-master": "1.11.x-dev"
  9199. }
  9200. },
  9201. "autoload": {
  9202. "psr-4": {
  9203. "Prophecy\\": "src/Prophecy"
  9204. }
  9205. },
  9206. "notification-url": "https://packagist.org/downloads/",
  9207. "license": [
  9208. "MIT"
  9209. ],
  9210. "authors": [
  9211. {
  9212. "name": "Konstantin Kudryashov",
  9213. "email": "ever.zet@gmail.com",
  9214. "homepage": "http://everzet.com"
  9215. },
  9216. {
  9217. "name": "Marcello Duarte",
  9218. "email": "marcello.duarte@gmail.com"
  9219. }
  9220. ],
  9221. "description": "Highly opinionated mocking framework for PHP 5.3+",
  9222. "homepage": "https://github.com/phpspec/prophecy",
  9223. "keywords": [
  9224. "Double",
  9225. "Dummy",
  9226. "fake",
  9227. "mock",
  9228. "spy",
  9229. "stub"
  9230. ],
  9231. "time": "2020-09-29T09:10:42+00:00"
  9232. },
  9233. {
  9234. "name": "phpunit/php-code-coverage",
  9235. "version": "7.0.10",
  9236. "source": {
  9237. "type": "git",
  9238. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9239. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf"
  9240. },
  9241. "dist": {
  9242. "type": "zip",
  9243. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f1884187926fbb755a9aaf0b3836ad3165b478bf",
  9244. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf",
  9245. "shasum": ""
  9246. },
  9247. "require": {
  9248. "ext-dom": "*",
  9249. "ext-xmlwriter": "*",
  9250. "php": "^7.2",
  9251. "phpunit/php-file-iterator": "^2.0.2",
  9252. "phpunit/php-text-template": "^1.2.1",
  9253. "phpunit/php-token-stream": "^3.1.1",
  9254. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  9255. "sebastian/environment": "^4.2.2",
  9256. "sebastian/version": "^2.0.1",
  9257. "theseer/tokenizer": "^1.1.3"
  9258. },
  9259. "require-dev": {
  9260. "phpunit/phpunit": "^8.2.2"
  9261. },
  9262. "suggest": {
  9263. "ext-xdebug": "^2.7.2"
  9264. },
  9265. "type": "library",
  9266. "extra": {
  9267. "branch-alias": {
  9268. "dev-master": "7.0-dev"
  9269. }
  9270. },
  9271. "autoload": {
  9272. "classmap": [
  9273. "src/"
  9274. ]
  9275. },
  9276. "notification-url": "https://packagist.org/downloads/",
  9277. "license": [
  9278. "BSD-3-Clause"
  9279. ],
  9280. "authors": [
  9281. {
  9282. "name": "Sebastian Bergmann",
  9283. "email": "sebastian@phpunit.de",
  9284. "role": "lead"
  9285. }
  9286. ],
  9287. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9288. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9289. "keywords": [
  9290. "coverage",
  9291. "testing",
  9292. "xunit"
  9293. ],
  9294. "time": "2019-11-20T13:55:58+00:00"
  9295. },
  9296. {
  9297. "name": "phpunit/php-file-iterator",
  9298. "version": "2.0.2",
  9299. "source": {
  9300. "type": "git",
  9301. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9302. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  9303. },
  9304. "dist": {
  9305. "type": "zip",
  9306. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  9307. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  9308. "shasum": ""
  9309. },
  9310. "require": {
  9311. "php": "^7.1"
  9312. },
  9313. "require-dev": {
  9314. "phpunit/phpunit": "^7.1"
  9315. },
  9316. "type": "library",
  9317. "extra": {
  9318. "branch-alias": {
  9319. "dev-master": "2.0.x-dev"
  9320. }
  9321. },
  9322. "autoload": {
  9323. "classmap": [
  9324. "src/"
  9325. ]
  9326. },
  9327. "notification-url": "https://packagist.org/downloads/",
  9328. "license": [
  9329. "BSD-3-Clause"
  9330. ],
  9331. "authors": [
  9332. {
  9333. "name": "Sebastian Bergmann",
  9334. "email": "sebastian@phpunit.de",
  9335. "role": "lead"
  9336. }
  9337. ],
  9338. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9339. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9340. "keywords": [
  9341. "filesystem",
  9342. "iterator"
  9343. ],
  9344. "time": "2018-09-13T20:33:42+00:00"
  9345. },
  9346. {
  9347. "name": "phpunit/php-text-template",
  9348. "version": "1.2.1",
  9349. "source": {
  9350. "type": "git",
  9351. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9352. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  9353. },
  9354. "dist": {
  9355. "type": "zip",
  9356. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9357. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9358. "shasum": ""
  9359. },
  9360. "require": {
  9361. "php": ">=5.3.3"
  9362. },
  9363. "type": "library",
  9364. "autoload": {
  9365. "classmap": [
  9366. "src/"
  9367. ]
  9368. },
  9369. "notification-url": "https://packagist.org/downloads/",
  9370. "license": [
  9371. "BSD-3-Clause"
  9372. ],
  9373. "authors": [
  9374. {
  9375. "name": "Sebastian Bergmann",
  9376. "email": "sebastian@phpunit.de",
  9377. "role": "lead"
  9378. }
  9379. ],
  9380. "description": "Simple template engine.",
  9381. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9382. "keywords": [
  9383. "template"
  9384. ],
  9385. "time": "2015-06-21T13:50:34+00:00"
  9386. },
  9387. {
  9388. "name": "phpunit/php-timer",
  9389. "version": "2.1.2",
  9390. "source": {
  9391. "type": "git",
  9392. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9393. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
  9394. },
  9395. "dist": {
  9396. "type": "zip",
  9397. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
  9398. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
  9399. "shasum": ""
  9400. },
  9401. "require": {
  9402. "php": "^7.1"
  9403. },
  9404. "require-dev": {
  9405. "phpunit/phpunit": "^7.0"
  9406. },
  9407. "type": "library",
  9408. "extra": {
  9409. "branch-alias": {
  9410. "dev-master": "2.1-dev"
  9411. }
  9412. },
  9413. "autoload": {
  9414. "classmap": [
  9415. "src/"
  9416. ]
  9417. },
  9418. "notification-url": "https://packagist.org/downloads/",
  9419. "license": [
  9420. "BSD-3-Clause"
  9421. ],
  9422. "authors": [
  9423. {
  9424. "name": "Sebastian Bergmann",
  9425. "email": "sebastian@phpunit.de",
  9426. "role": "lead"
  9427. }
  9428. ],
  9429. "description": "Utility class for timing",
  9430. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9431. "keywords": [
  9432. "timer"
  9433. ],
  9434. "time": "2019-06-07T04:22:29+00:00"
  9435. },
  9436. {
  9437. "name": "phpunit/php-token-stream",
  9438. "version": "3.1.1",
  9439. "source": {
  9440. "type": "git",
  9441. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  9442. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
  9443. },
  9444. "dist": {
  9445. "type": "zip",
  9446. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
  9447. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
  9448. "shasum": ""
  9449. },
  9450. "require": {
  9451. "ext-tokenizer": "*",
  9452. "php": "^7.1"
  9453. },
  9454. "require-dev": {
  9455. "phpunit/phpunit": "^7.0"
  9456. },
  9457. "type": "library",
  9458. "extra": {
  9459. "branch-alias": {
  9460. "dev-master": "3.1-dev"
  9461. }
  9462. },
  9463. "autoload": {
  9464. "classmap": [
  9465. "src/"
  9466. ]
  9467. },
  9468. "notification-url": "https://packagist.org/downloads/",
  9469. "license": [
  9470. "BSD-3-Clause"
  9471. ],
  9472. "authors": [
  9473. {
  9474. "name": "Sebastian Bergmann",
  9475. "email": "sebastian@phpunit.de"
  9476. }
  9477. ],
  9478. "description": "Wrapper around PHP's tokenizer extension.",
  9479. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  9480. "keywords": [
  9481. "tokenizer"
  9482. ],
  9483. "abandoned": true,
  9484. "time": "2019-09-17T06:23:10+00:00"
  9485. },
  9486. {
  9487. "name": "phpunit/phpunit",
  9488. "version": "8.5.8",
  9489. "source": {
  9490. "type": "git",
  9491. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9492. "reference": "34c18baa6a44f1d1fbf0338907139e9dce95b997"
  9493. },
  9494. "dist": {
  9495. "type": "zip",
  9496. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/34c18baa6a44f1d1fbf0338907139e9dce95b997",
  9497. "reference": "34c18baa6a44f1d1fbf0338907139e9dce95b997",
  9498. "shasum": ""
  9499. },
  9500. "require": {
  9501. "doctrine/instantiator": "^1.2.0",
  9502. "ext-dom": "*",
  9503. "ext-json": "*",
  9504. "ext-libxml": "*",
  9505. "ext-mbstring": "*",
  9506. "ext-xml": "*",
  9507. "ext-xmlwriter": "*",
  9508. "myclabs/deep-copy": "^1.9.1",
  9509. "phar-io/manifest": "^1.0.3",
  9510. "phar-io/version": "^2.0.1",
  9511. "php": "^7.2",
  9512. "phpspec/prophecy": "^1.8.1",
  9513. "phpunit/php-code-coverage": "^7.0.7",
  9514. "phpunit/php-file-iterator": "^2.0.2",
  9515. "phpunit/php-text-template": "^1.2.1",
  9516. "phpunit/php-timer": "^2.1.2",
  9517. "sebastian/comparator": "^3.0.2",
  9518. "sebastian/diff": "^3.0.2",
  9519. "sebastian/environment": "^4.2.2",
  9520. "sebastian/exporter": "^3.1.1",
  9521. "sebastian/global-state": "^3.0.0",
  9522. "sebastian/object-enumerator": "^3.0.3",
  9523. "sebastian/resource-operations": "^2.0.1",
  9524. "sebastian/type": "^1.1.3",
  9525. "sebastian/version": "^2.0.1"
  9526. },
  9527. "require-dev": {
  9528. "ext-pdo": "*"
  9529. },
  9530. "suggest": {
  9531. "ext-soap": "*",
  9532. "ext-xdebug": "*",
  9533. "phpunit/php-invoker": "^2.0.0"
  9534. },
  9535. "bin": [
  9536. "phpunit"
  9537. ],
  9538. "type": "library",
  9539. "extra": {
  9540. "branch-alias": {
  9541. "dev-master": "8.5-dev"
  9542. }
  9543. },
  9544. "autoload": {
  9545. "classmap": [
  9546. "src/"
  9547. ]
  9548. },
  9549. "notification-url": "https://packagist.org/downloads/",
  9550. "license": [
  9551. "BSD-3-Clause"
  9552. ],
  9553. "authors": [
  9554. {
  9555. "name": "Sebastian Bergmann",
  9556. "email": "sebastian@phpunit.de",
  9557. "role": "lead"
  9558. }
  9559. ],
  9560. "description": "The PHP Unit Testing framework.",
  9561. "homepage": "https://phpunit.de/",
  9562. "keywords": [
  9563. "phpunit",
  9564. "testing",
  9565. "xunit"
  9566. ],
  9567. "funding": [
  9568. {
  9569. "url": "https://phpunit.de/donate.html",
  9570. "type": "custom"
  9571. },
  9572. {
  9573. "url": "https://github.com/sebastianbergmann",
  9574. "type": "github"
  9575. }
  9576. ],
  9577. "time": "2020-06-22T07:06:58+00:00"
  9578. },
  9579. {
  9580. "name": "scrivo/highlight.php",
  9581. "version": "v9.18.1.2",
  9582. "source": {
  9583. "type": "git",
  9584. "url": "https://github.com/scrivo/highlight.php.git",
  9585. "reference": "efb6e445494a9458aa59b0af5edfa4bdcc6809d9"
  9586. },
  9587. "dist": {
  9588. "type": "zip",
  9589. "url": "https://api.github.com/repos/scrivo/highlight.php/zipball/efb6e445494a9458aa59b0af5edfa4bdcc6809d9",
  9590. "reference": "efb6e445494a9458aa59b0af5edfa4bdcc6809d9",
  9591. "shasum": ""
  9592. },
  9593. "require": {
  9594. "ext-json": "*",
  9595. "ext-mbstring": "*",
  9596. "php": ">=5.4"
  9597. },
  9598. "require-dev": {
  9599. "phpunit/phpunit": "^4.8|^5.7",
  9600. "sabberworm/php-css-parser": "^8.3",
  9601. "symfony/finder": "^2.8|^3.4",
  9602. "symfony/var-dumper": "^2.8|^3.4"
  9603. },
  9604. "suggest": {
  9605. "ext-dom": "Needed to make use of the features in the utilities namespace"
  9606. },
  9607. "type": "library",
  9608. "autoload": {
  9609. "psr-0": {
  9610. "Highlight\\": "",
  9611. "HighlightUtilities\\": ""
  9612. },
  9613. "files": [
  9614. "HighlightUtilities/functions.php"
  9615. ]
  9616. },
  9617. "notification-url": "https://packagist.org/downloads/",
  9618. "license": [
  9619. "BSD-3-Clause"
  9620. ],
  9621. "authors": [
  9622. {
  9623. "name": "Geert Bergman",
  9624. "homepage": "http://www.scrivo.org/",
  9625. "role": "Project Author"
  9626. },
  9627. {
  9628. "name": "Vladimir Jimenez",
  9629. "homepage": "https://allejo.io",
  9630. "role": "Maintainer"
  9631. },
  9632. {
  9633. "name": "Martin Folkers",
  9634. "homepage": "https://twobrain.io",
  9635. "role": "Contributor"
  9636. }
  9637. ],
  9638. "description": "Server side syntax highlighter that supports 185 languages. It's a PHP port of highlight.js",
  9639. "keywords": [
  9640. "code",
  9641. "highlight",
  9642. "highlight.js",
  9643. "highlight.php",
  9644. "syntax"
  9645. ],
  9646. "funding": [
  9647. {
  9648. "url": "https://github.com/allejo",
  9649. "type": "github"
  9650. }
  9651. ],
  9652. "time": "2020-08-27T03:24:44+00:00"
  9653. },
  9654. {
  9655. "name": "sebastian/code-unit-reverse-lookup",
  9656. "version": "1.0.1",
  9657. "source": {
  9658. "type": "git",
  9659. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9660. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  9661. },
  9662. "dist": {
  9663. "type": "zip",
  9664. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  9665. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  9666. "shasum": ""
  9667. },
  9668. "require": {
  9669. "php": "^5.6 || ^7.0"
  9670. },
  9671. "require-dev": {
  9672. "phpunit/phpunit": "^5.7 || ^6.0"
  9673. },
  9674. "type": "library",
  9675. "extra": {
  9676. "branch-alias": {
  9677. "dev-master": "1.0.x-dev"
  9678. }
  9679. },
  9680. "autoload": {
  9681. "classmap": [
  9682. "src/"
  9683. ]
  9684. },
  9685. "notification-url": "https://packagist.org/downloads/",
  9686. "license": [
  9687. "BSD-3-Clause"
  9688. ],
  9689. "authors": [
  9690. {
  9691. "name": "Sebastian Bergmann",
  9692. "email": "sebastian@phpunit.de"
  9693. }
  9694. ],
  9695. "description": "Looks up which function or method a line of code belongs to",
  9696. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9697. "time": "2017-03-04T06:30:41+00:00"
  9698. },
  9699. {
  9700. "name": "sebastian/comparator",
  9701. "version": "3.0.2",
  9702. "source": {
  9703. "type": "git",
  9704. "url": "https://github.com/sebastianbergmann/comparator.git",
  9705. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  9706. },
  9707. "dist": {
  9708. "type": "zip",
  9709. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  9710. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  9711. "shasum": ""
  9712. },
  9713. "require": {
  9714. "php": "^7.1",
  9715. "sebastian/diff": "^3.0",
  9716. "sebastian/exporter": "^3.1"
  9717. },
  9718. "require-dev": {
  9719. "phpunit/phpunit": "^7.1"
  9720. },
  9721. "type": "library",
  9722. "extra": {
  9723. "branch-alias": {
  9724. "dev-master": "3.0-dev"
  9725. }
  9726. },
  9727. "autoload": {
  9728. "classmap": [
  9729. "src/"
  9730. ]
  9731. },
  9732. "notification-url": "https://packagist.org/downloads/",
  9733. "license": [
  9734. "BSD-3-Clause"
  9735. ],
  9736. "authors": [
  9737. {
  9738. "name": "Jeff Welch",
  9739. "email": "whatthejeff@gmail.com"
  9740. },
  9741. {
  9742. "name": "Volker Dusch",
  9743. "email": "github@wallbash.com"
  9744. },
  9745. {
  9746. "name": "Bernhard Schussek",
  9747. "email": "bschussek@2bepublished.at"
  9748. },
  9749. {
  9750. "name": "Sebastian Bergmann",
  9751. "email": "sebastian@phpunit.de"
  9752. }
  9753. ],
  9754. "description": "Provides the functionality to compare PHP values for equality",
  9755. "homepage": "https://github.com/sebastianbergmann/comparator",
  9756. "keywords": [
  9757. "comparator",
  9758. "compare",
  9759. "equality"
  9760. ],
  9761. "time": "2018-07-12T15:12:46+00:00"
  9762. },
  9763. {
  9764. "name": "sebastian/diff",
  9765. "version": "3.0.2",
  9766. "source": {
  9767. "type": "git",
  9768. "url": "https://github.com/sebastianbergmann/diff.git",
  9769. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  9770. },
  9771. "dist": {
  9772. "type": "zip",
  9773. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  9774. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  9775. "shasum": ""
  9776. },
  9777. "require": {
  9778. "php": "^7.1"
  9779. },
  9780. "require-dev": {
  9781. "phpunit/phpunit": "^7.5 || ^8.0",
  9782. "symfony/process": "^2 || ^3.3 || ^4"
  9783. },
  9784. "type": "library",
  9785. "extra": {
  9786. "branch-alias": {
  9787. "dev-master": "3.0-dev"
  9788. }
  9789. },
  9790. "autoload": {
  9791. "classmap": [
  9792. "src/"
  9793. ]
  9794. },
  9795. "notification-url": "https://packagist.org/downloads/",
  9796. "license": [
  9797. "BSD-3-Clause"
  9798. ],
  9799. "authors": [
  9800. {
  9801. "name": "Kore Nordmann",
  9802. "email": "mail@kore-nordmann.de"
  9803. },
  9804. {
  9805. "name": "Sebastian Bergmann",
  9806. "email": "sebastian@phpunit.de"
  9807. }
  9808. ],
  9809. "description": "Diff implementation",
  9810. "homepage": "https://github.com/sebastianbergmann/diff",
  9811. "keywords": [
  9812. "diff",
  9813. "udiff",
  9814. "unidiff",
  9815. "unified diff"
  9816. ],
  9817. "time": "2019-02-04T06:01:07+00:00"
  9818. },
  9819. {
  9820. "name": "sebastian/environment",
  9821. "version": "4.2.3",
  9822. "source": {
  9823. "type": "git",
  9824. "url": "https://github.com/sebastianbergmann/environment.git",
  9825. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368"
  9826. },
  9827. "dist": {
  9828. "type": "zip",
  9829. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  9830. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  9831. "shasum": ""
  9832. },
  9833. "require": {
  9834. "php": "^7.1"
  9835. },
  9836. "require-dev": {
  9837. "phpunit/phpunit": "^7.5"
  9838. },
  9839. "suggest": {
  9840. "ext-posix": "*"
  9841. },
  9842. "type": "library",
  9843. "extra": {
  9844. "branch-alias": {
  9845. "dev-master": "4.2-dev"
  9846. }
  9847. },
  9848. "autoload": {
  9849. "classmap": [
  9850. "src/"
  9851. ]
  9852. },
  9853. "notification-url": "https://packagist.org/downloads/",
  9854. "license": [
  9855. "BSD-3-Clause"
  9856. ],
  9857. "authors": [
  9858. {
  9859. "name": "Sebastian Bergmann",
  9860. "email": "sebastian@phpunit.de"
  9861. }
  9862. ],
  9863. "description": "Provides functionality to handle HHVM/PHP environments",
  9864. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9865. "keywords": [
  9866. "Xdebug",
  9867. "environment",
  9868. "hhvm"
  9869. ],
  9870. "time": "2019-11-20T08:46:58+00:00"
  9871. },
  9872. {
  9873. "name": "sebastian/exporter",
  9874. "version": "3.1.2",
  9875. "source": {
  9876. "type": "git",
  9877. "url": "https://github.com/sebastianbergmann/exporter.git",
  9878. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  9879. },
  9880. "dist": {
  9881. "type": "zip",
  9882. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  9883. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  9884. "shasum": ""
  9885. },
  9886. "require": {
  9887. "php": "^7.0",
  9888. "sebastian/recursion-context": "^3.0"
  9889. },
  9890. "require-dev": {
  9891. "ext-mbstring": "*",
  9892. "phpunit/phpunit": "^6.0"
  9893. },
  9894. "type": "library",
  9895. "extra": {
  9896. "branch-alias": {
  9897. "dev-master": "3.1.x-dev"
  9898. }
  9899. },
  9900. "autoload": {
  9901. "classmap": [
  9902. "src/"
  9903. ]
  9904. },
  9905. "notification-url": "https://packagist.org/downloads/",
  9906. "license": [
  9907. "BSD-3-Clause"
  9908. ],
  9909. "authors": [
  9910. {
  9911. "name": "Sebastian Bergmann",
  9912. "email": "sebastian@phpunit.de"
  9913. },
  9914. {
  9915. "name": "Jeff Welch",
  9916. "email": "whatthejeff@gmail.com"
  9917. },
  9918. {
  9919. "name": "Volker Dusch",
  9920. "email": "github@wallbash.com"
  9921. },
  9922. {
  9923. "name": "Adam Harvey",
  9924. "email": "aharvey@php.net"
  9925. },
  9926. {
  9927. "name": "Bernhard Schussek",
  9928. "email": "bschussek@gmail.com"
  9929. }
  9930. ],
  9931. "description": "Provides the functionality to export PHP variables for visualization",
  9932. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  9933. "keywords": [
  9934. "export",
  9935. "exporter"
  9936. ],
  9937. "time": "2019-09-14T09:02:43+00:00"
  9938. },
  9939. {
  9940. "name": "sebastian/global-state",
  9941. "version": "3.0.0",
  9942. "source": {
  9943. "type": "git",
  9944. "url": "https://github.com/sebastianbergmann/global-state.git",
  9945. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4"
  9946. },
  9947. "dist": {
  9948. "type": "zip",
  9949. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  9950. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  9951. "shasum": ""
  9952. },
  9953. "require": {
  9954. "php": "^7.2",
  9955. "sebastian/object-reflector": "^1.1.1",
  9956. "sebastian/recursion-context": "^3.0"
  9957. },
  9958. "require-dev": {
  9959. "ext-dom": "*",
  9960. "phpunit/phpunit": "^8.0"
  9961. },
  9962. "suggest": {
  9963. "ext-uopz": "*"
  9964. },
  9965. "type": "library",
  9966. "extra": {
  9967. "branch-alias": {
  9968. "dev-master": "3.0-dev"
  9969. }
  9970. },
  9971. "autoload": {
  9972. "classmap": [
  9973. "src/"
  9974. ]
  9975. },
  9976. "notification-url": "https://packagist.org/downloads/",
  9977. "license": [
  9978. "BSD-3-Clause"
  9979. ],
  9980. "authors": [
  9981. {
  9982. "name": "Sebastian Bergmann",
  9983. "email": "sebastian@phpunit.de"
  9984. }
  9985. ],
  9986. "description": "Snapshotting of global state",
  9987. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9988. "keywords": [
  9989. "global state"
  9990. ],
  9991. "time": "2019-02-01T05:30:01+00:00"
  9992. },
  9993. {
  9994. "name": "sebastian/object-enumerator",
  9995. "version": "3.0.3",
  9996. "source": {
  9997. "type": "git",
  9998. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9999. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  10000. },
  10001. "dist": {
  10002. "type": "zip",
  10003. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  10004. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  10005. "shasum": ""
  10006. },
  10007. "require": {
  10008. "php": "^7.0",
  10009. "sebastian/object-reflector": "^1.1.1",
  10010. "sebastian/recursion-context": "^3.0"
  10011. },
  10012. "require-dev": {
  10013. "phpunit/phpunit": "^6.0"
  10014. },
  10015. "type": "library",
  10016. "extra": {
  10017. "branch-alias": {
  10018. "dev-master": "3.0.x-dev"
  10019. }
  10020. },
  10021. "autoload": {
  10022. "classmap": [
  10023. "src/"
  10024. ]
  10025. },
  10026. "notification-url": "https://packagist.org/downloads/",
  10027. "license": [
  10028. "BSD-3-Clause"
  10029. ],
  10030. "authors": [
  10031. {
  10032. "name": "Sebastian Bergmann",
  10033. "email": "sebastian@phpunit.de"
  10034. }
  10035. ],
  10036. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10037. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10038. "time": "2017-08-03T12:35:26+00:00"
  10039. },
  10040. {
  10041. "name": "sebastian/object-reflector",
  10042. "version": "1.1.1",
  10043. "source": {
  10044. "type": "git",
  10045. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10046. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  10047. },
  10048. "dist": {
  10049. "type": "zip",
  10050. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  10051. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  10052. "shasum": ""
  10053. },
  10054. "require": {
  10055. "php": "^7.0"
  10056. },
  10057. "require-dev": {
  10058. "phpunit/phpunit": "^6.0"
  10059. },
  10060. "type": "library",
  10061. "extra": {
  10062. "branch-alias": {
  10063. "dev-master": "1.1-dev"
  10064. }
  10065. },
  10066. "autoload": {
  10067. "classmap": [
  10068. "src/"
  10069. ]
  10070. },
  10071. "notification-url": "https://packagist.org/downloads/",
  10072. "license": [
  10073. "BSD-3-Clause"
  10074. ],
  10075. "authors": [
  10076. {
  10077. "name": "Sebastian Bergmann",
  10078. "email": "sebastian@phpunit.de"
  10079. }
  10080. ],
  10081. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10082. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10083. "time": "2017-03-29T09:07:27+00:00"
  10084. },
  10085. {
  10086. "name": "sebastian/recursion-context",
  10087. "version": "3.0.0",
  10088. "source": {
  10089. "type": "git",
  10090. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10091. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  10092. },
  10093. "dist": {
  10094. "type": "zip",
  10095. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  10096. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  10097. "shasum": ""
  10098. },
  10099. "require": {
  10100. "php": "^7.0"
  10101. },
  10102. "require-dev": {
  10103. "phpunit/phpunit": "^6.0"
  10104. },
  10105. "type": "library",
  10106. "extra": {
  10107. "branch-alias": {
  10108. "dev-master": "3.0.x-dev"
  10109. }
  10110. },
  10111. "autoload": {
  10112. "classmap": [
  10113. "src/"
  10114. ]
  10115. },
  10116. "notification-url": "https://packagist.org/downloads/",
  10117. "license": [
  10118. "BSD-3-Clause"
  10119. ],
  10120. "authors": [
  10121. {
  10122. "name": "Jeff Welch",
  10123. "email": "whatthejeff@gmail.com"
  10124. },
  10125. {
  10126. "name": "Sebastian Bergmann",
  10127. "email": "sebastian@phpunit.de"
  10128. },
  10129. {
  10130. "name": "Adam Harvey",
  10131. "email": "aharvey@php.net"
  10132. }
  10133. ],
  10134. "description": "Provides functionality to recursively process PHP variables",
  10135. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  10136. "time": "2017-03-03T06:23:57+00:00"
  10137. },
  10138. {
  10139. "name": "sebastian/resource-operations",
  10140. "version": "2.0.1",
  10141. "source": {
  10142. "type": "git",
  10143. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10144. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  10145. },
  10146. "dist": {
  10147. "type": "zip",
  10148. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  10149. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  10150. "shasum": ""
  10151. },
  10152. "require": {
  10153. "php": "^7.1"
  10154. },
  10155. "type": "library",
  10156. "extra": {
  10157. "branch-alias": {
  10158. "dev-master": "2.0-dev"
  10159. }
  10160. },
  10161. "autoload": {
  10162. "classmap": [
  10163. "src/"
  10164. ]
  10165. },
  10166. "notification-url": "https://packagist.org/downloads/",
  10167. "license": [
  10168. "BSD-3-Clause"
  10169. ],
  10170. "authors": [
  10171. {
  10172. "name": "Sebastian Bergmann",
  10173. "email": "sebastian@phpunit.de"
  10174. }
  10175. ],
  10176. "description": "Provides a list of PHP built-in functions that operate on resources",
  10177. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10178. "time": "2018-10-04T04:07:39+00:00"
  10179. },
  10180. {
  10181. "name": "sebastian/type",
  10182. "version": "1.1.3",
  10183. "source": {
  10184. "type": "git",
  10185. "url": "https://github.com/sebastianbergmann/type.git",
  10186. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3"
  10187. },
  10188. "dist": {
  10189. "type": "zip",
  10190. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/3aaaa15fa71d27650d62a948be022fe3b48541a3",
  10191. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3",
  10192. "shasum": ""
  10193. },
  10194. "require": {
  10195. "php": "^7.2"
  10196. },
  10197. "require-dev": {
  10198. "phpunit/phpunit": "^8.2"
  10199. },
  10200. "type": "library",
  10201. "extra": {
  10202. "branch-alias": {
  10203. "dev-master": "1.1-dev"
  10204. }
  10205. },
  10206. "autoload": {
  10207. "classmap": [
  10208. "src/"
  10209. ]
  10210. },
  10211. "notification-url": "https://packagist.org/downloads/",
  10212. "license": [
  10213. "BSD-3-Clause"
  10214. ],
  10215. "authors": [
  10216. {
  10217. "name": "Sebastian Bergmann",
  10218. "email": "sebastian@phpunit.de",
  10219. "role": "lead"
  10220. }
  10221. ],
  10222. "description": "Collection of value objects that represent the types of the PHP type system",
  10223. "homepage": "https://github.com/sebastianbergmann/type",
  10224. "time": "2019-07-02T08:10:15+00:00"
  10225. },
  10226. {
  10227. "name": "sebastian/version",
  10228. "version": "2.0.1",
  10229. "source": {
  10230. "type": "git",
  10231. "url": "https://github.com/sebastianbergmann/version.git",
  10232. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  10233. },
  10234. "dist": {
  10235. "type": "zip",
  10236. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  10237. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  10238. "shasum": ""
  10239. },
  10240. "require": {
  10241. "php": ">=5.6"
  10242. },
  10243. "type": "library",
  10244. "extra": {
  10245. "branch-alias": {
  10246. "dev-master": "2.0.x-dev"
  10247. }
  10248. },
  10249. "autoload": {
  10250. "classmap": [
  10251. "src/"
  10252. ]
  10253. },
  10254. "notification-url": "https://packagist.org/downloads/",
  10255. "license": [
  10256. "BSD-3-Clause"
  10257. ],
  10258. "authors": [
  10259. {
  10260. "name": "Sebastian Bergmann",
  10261. "email": "sebastian@phpunit.de",
  10262. "role": "lead"
  10263. }
  10264. ],
  10265. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10266. "homepage": "https://github.com/sebastianbergmann/version",
  10267. "time": "2016-10-03T07:35:21+00:00"
  10268. },
  10269. {
  10270. "name": "seld/jsonlint",
  10271. "version": "1.8.2",
  10272. "source": {
  10273. "type": "git",
  10274. "url": "https://github.com/Seldaek/jsonlint.git",
  10275. "reference": "590cfec960b77fd55e39b7d9246659e95dd6d337"
  10276. },
  10277. "dist": {
  10278. "type": "zip",
  10279. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/590cfec960b77fd55e39b7d9246659e95dd6d337",
  10280. "reference": "590cfec960b77fd55e39b7d9246659e95dd6d337",
  10281. "shasum": ""
  10282. },
  10283. "require": {
  10284. "php": "^5.3 || ^7.0 || ^8.0"
  10285. },
  10286. "require-dev": {
  10287. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  10288. },
  10289. "bin": [
  10290. "bin/jsonlint"
  10291. ],
  10292. "type": "library",
  10293. "autoload": {
  10294. "psr-4": {
  10295. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  10296. }
  10297. },
  10298. "notification-url": "https://packagist.org/downloads/",
  10299. "license": [
  10300. "MIT"
  10301. ],
  10302. "authors": [
  10303. {
  10304. "name": "Jordi Boggiano",
  10305. "email": "j.boggiano@seld.be",
  10306. "homepage": "http://seld.be"
  10307. }
  10308. ],
  10309. "description": "JSON Linter",
  10310. "keywords": [
  10311. "json",
  10312. "linter",
  10313. "parser",
  10314. "validator"
  10315. ],
  10316. "funding": [
  10317. {
  10318. "url": "https://github.com/Seldaek",
  10319. "type": "github"
  10320. },
  10321. {
  10322. "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
  10323. "type": "tidelift"
  10324. }
  10325. ],
  10326. "time": "2020-08-25T06:56:57+00:00"
  10327. },
  10328. {
  10329. "name": "seld/phar-utils",
  10330. "version": "1.1.1",
  10331. "source": {
  10332. "type": "git",
  10333. "url": "https://github.com/Seldaek/phar-utils.git",
  10334. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796"
  10335. },
  10336. "dist": {
  10337. "type": "zip",
  10338. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  10339. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  10340. "shasum": ""
  10341. },
  10342. "require": {
  10343. "php": ">=5.3"
  10344. },
  10345. "type": "library",
  10346. "extra": {
  10347. "branch-alias": {
  10348. "dev-master": "1.x-dev"
  10349. }
  10350. },
  10351. "autoload": {
  10352. "psr-4": {
  10353. "Seld\\PharUtils\\": "src/"
  10354. }
  10355. },
  10356. "notification-url": "https://packagist.org/downloads/",
  10357. "license": [
  10358. "MIT"
  10359. ],
  10360. "authors": [
  10361. {
  10362. "name": "Jordi Boggiano",
  10363. "email": "j.boggiano@seld.be"
  10364. }
  10365. ],
  10366. "description": "PHAR file format utilities, for when PHP phars you up",
  10367. "keywords": [
  10368. "phar"
  10369. ],
  10370. "time": "2020-07-07T18:42:57+00:00"
  10371. },
  10372. {
  10373. "name": "symfony/debug",
  10374. "version": "v4.4.14",
  10375. "source": {
  10376. "type": "git",
  10377. "url": "https://github.com/symfony/debug.git",
  10378. "reference": "726b85e69342e767d60e3853b98559a68ff74183"
  10379. },
  10380. "dist": {
  10381. "type": "zip",
  10382. "url": "https://api.github.com/repos/symfony/debug/zipball/726b85e69342e767d60e3853b98559a68ff74183",
  10383. "reference": "726b85e69342e767d60e3853b98559a68ff74183",
  10384. "shasum": ""
  10385. },
  10386. "require": {
  10387. "php": ">=7.1.3",
  10388. "psr/log": "~1.0",
  10389. "symfony/polyfill-php80": "^1.15"
  10390. },
  10391. "conflict": {
  10392. "symfony/http-kernel": "<3.4"
  10393. },
  10394. "require-dev": {
  10395. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  10396. },
  10397. "type": "library",
  10398. "extra": {
  10399. "branch-alias": {
  10400. "dev-master": "4.4-dev"
  10401. }
  10402. },
  10403. "autoload": {
  10404. "psr-4": {
  10405. "Symfony\\Component\\Debug\\": ""
  10406. },
  10407. "exclude-from-classmap": [
  10408. "/Tests/"
  10409. ]
  10410. },
  10411. "notification-url": "https://packagist.org/downloads/",
  10412. "license": [
  10413. "MIT"
  10414. ],
  10415. "authors": [
  10416. {
  10417. "name": "Fabien Potencier",
  10418. "email": "fabien@symfony.com"
  10419. },
  10420. {
  10421. "name": "Symfony Community",
  10422. "homepage": "https://symfony.com/contributors"
  10423. }
  10424. ],
  10425. "description": "Symfony Debug Component",
  10426. "homepage": "https://symfony.com",
  10427. "funding": [
  10428. {
  10429. "url": "https://symfony.com/sponsor",
  10430. "type": "custom"
  10431. },
  10432. {
  10433. "url": "https://github.com/fabpot",
  10434. "type": "github"
  10435. },
  10436. {
  10437. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10438. "type": "tidelift"
  10439. }
  10440. ],
  10441. "time": "2020-09-09T05:20:36+00:00"
  10442. },
  10443. {
  10444. "name": "symfony/filesystem",
  10445. "version": "v5.1.6",
  10446. "source": {
  10447. "type": "git",
  10448. "url": "https://github.com/symfony/filesystem.git",
  10449. "reference": "f3194303d3077829dbbc1d18f50288b2a01146f2"
  10450. },
  10451. "dist": {
  10452. "type": "zip",
  10453. "url": "https://api.github.com/repos/symfony/filesystem/zipball/f3194303d3077829dbbc1d18f50288b2a01146f2",
  10454. "reference": "f3194303d3077829dbbc1d18f50288b2a01146f2",
  10455. "shasum": ""
  10456. },
  10457. "require": {
  10458. "php": ">=7.2.5",
  10459. "symfony/polyfill-ctype": "~1.8"
  10460. },
  10461. "type": "library",
  10462. "extra": {
  10463. "branch-alias": {
  10464. "dev-master": "5.1-dev"
  10465. }
  10466. },
  10467. "autoload": {
  10468. "psr-4": {
  10469. "Symfony\\Component\\Filesystem\\": ""
  10470. },
  10471. "exclude-from-classmap": [
  10472. "/Tests/"
  10473. ]
  10474. },
  10475. "notification-url": "https://packagist.org/downloads/",
  10476. "license": [
  10477. "MIT"
  10478. ],
  10479. "authors": [
  10480. {
  10481. "name": "Fabien Potencier",
  10482. "email": "fabien@symfony.com"
  10483. },
  10484. {
  10485. "name": "Symfony Community",
  10486. "homepage": "https://symfony.com/contributors"
  10487. }
  10488. ],
  10489. "description": "Symfony Filesystem Component",
  10490. "homepage": "https://symfony.com",
  10491. "funding": [
  10492. {
  10493. "url": "https://symfony.com/sponsor",
  10494. "type": "custom"
  10495. },
  10496. {
  10497. "url": "https://github.com/fabpot",
  10498. "type": "github"
  10499. },
  10500. {
  10501. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10502. "type": "tidelift"
  10503. }
  10504. ],
  10505. "time": "2020-09-02T16:23:27+00:00"
  10506. },
  10507. {
  10508. "name": "theseer/tokenizer",
  10509. "version": "1.2.0",
  10510. "source": {
  10511. "type": "git",
  10512. "url": "https://github.com/theseer/tokenizer.git",
  10513. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  10514. },
  10515. "dist": {
  10516. "type": "zip",
  10517. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  10518. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  10519. "shasum": ""
  10520. },
  10521. "require": {
  10522. "ext-dom": "*",
  10523. "ext-tokenizer": "*",
  10524. "ext-xmlwriter": "*",
  10525. "php": "^7.2 || ^8.0"
  10526. },
  10527. "type": "library",
  10528. "autoload": {
  10529. "classmap": [
  10530. "src/"
  10531. ]
  10532. },
  10533. "notification-url": "https://packagist.org/downloads/",
  10534. "license": [
  10535. "BSD-3-Clause"
  10536. ],
  10537. "authors": [
  10538. {
  10539. "name": "Arne Blankerts",
  10540. "email": "arne@blankerts.de",
  10541. "role": "Developer"
  10542. }
  10543. ],
  10544. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10545. "funding": [
  10546. {
  10547. "url": "https://github.com/theseer",
  10548. "type": "github"
  10549. }
  10550. ],
  10551. "time": "2020-07-12T23:59:07+00:00"
  10552. },
  10553. {
  10554. "name": "webmozart/assert",
  10555. "version": "1.9.1",
  10556. "source": {
  10557. "type": "git",
  10558. "url": "https://github.com/webmozart/assert.git",
  10559. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  10560. },
  10561. "dist": {
  10562. "type": "zip",
  10563. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  10564. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  10565. "shasum": ""
  10566. },
  10567. "require": {
  10568. "php": "^5.3.3 || ^7.0 || ^8.0",
  10569. "symfony/polyfill-ctype": "^1.8"
  10570. },
  10571. "conflict": {
  10572. "phpstan/phpstan": "<0.12.20",
  10573. "vimeo/psalm": "<3.9.1"
  10574. },
  10575. "require-dev": {
  10576. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  10577. },
  10578. "type": "library",
  10579. "autoload": {
  10580. "psr-4": {
  10581. "Webmozart\\Assert\\": "src/"
  10582. }
  10583. },
  10584. "notification-url": "https://packagist.org/downloads/",
  10585. "license": [
  10586. "MIT"
  10587. ],
  10588. "authors": [
  10589. {
  10590. "name": "Bernhard Schussek",
  10591. "email": "bschussek@gmail.com"
  10592. }
  10593. ],
  10594. "description": "Assertions to validate method input/output with nice error messages.",
  10595. "keywords": [
  10596. "assert",
  10597. "check",
  10598. "validate"
  10599. ],
  10600. "time": "2020-07-08T17:02:28+00:00"
  10601. }
  10602. ],
  10603. "aliases": [],
  10604. "minimum-stability": "dev",
  10605. "stability-flags": [],
  10606. "prefer-stable": true,
  10607. "prefer-lowest": false,
  10608. "platform": {
  10609. "php": "^7.2.5",
  10610. "ext-json": "*",
  10611. "ext-openssl": "*"
  10612. },
  10613. "platform-dev": [],
  10614. "plugin-api-version": "1.1.0"
  10615. }