composer.lock 345 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860
  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": "cfaebfda187f32ffbecabdd715f95d80",
  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": "caouecs/laravel-lang",
  164. "version": "7.0.3",
  165. "source": {
  166. "type": "git",
  167. "url": "https://github.com/caouecs/lang.git",
  168. "reference": "2cb9932f781415f1669ce27d29e5b86399ab164a"
  169. },
  170. "dist": {
  171. "type": "zip",
  172. "url": "https://api.github.com/repos/caouecs/lang/zipball/2cb9932f781415f1669ce27d29e5b86399ab164a",
  173. "reference": "2cb9932f781415f1669ce27d29e5b86399ab164a",
  174. "shasum": ""
  175. },
  176. "require": {
  177. "ext-json": "*"
  178. },
  179. "suggest": {
  180. "andrey-helldar/laravel-lang-publisher": "Easy installation and update of translation files for your project",
  181. "arcanedev/laravel-lang": "Translations manager and checker for Laravel 5",
  182. "overtrue/laravel-lang": "Command to add languages in your project"
  183. },
  184. "type": "library",
  185. "notification-url": "https://packagist.org/downloads/",
  186. "license": [
  187. "MIT"
  188. ],
  189. "authors": [
  190. {
  191. "name": "caouecs",
  192. "email": "caouecs@caouecs.net"
  193. }
  194. ],
  195. "description": "Languages for Laravel",
  196. "keywords": [
  197. "lang",
  198. "languages",
  199. "laravel",
  200. "lpm"
  201. ],
  202. "abandoned": "https://github.com/Laravel-Lang/lang",
  203. "time": "2020-08-23T08:17:21+00:00"
  204. },
  205. {
  206. "name": "dasprid/enum",
  207. "version": "1.0.2",
  208. "source": {
  209. "type": "git",
  210. "url": "https://github.com/DASPRiD/Enum.git",
  211. "reference": "6ccc0d7141a7f149e3c56cb0ce5f05d9152cfd07"
  212. },
  213. "dist": {
  214. "type": "zip",
  215. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/6ccc0d7141a7f149e3c56cb0ce5f05d9152cfd07",
  216. "reference": "6ccc0d7141a7f149e3c56cb0ce5f05d9152cfd07",
  217. "shasum": ""
  218. },
  219. "require-dev": {
  220. "phpunit/phpunit": "^7 | ^8 | ^9",
  221. "squizlabs/php_codesniffer": "^3.4"
  222. },
  223. "type": "library",
  224. "autoload": {
  225. "psr-4": {
  226. "DASPRiD\\Enum\\": "src/"
  227. }
  228. },
  229. "notification-url": "https://packagist.org/downloads/",
  230. "license": [
  231. "BSD-2-Clause"
  232. ],
  233. "authors": [
  234. {
  235. "name": "Ben Scholzen 'DASPRiD'",
  236. "email": "mail@dasprids.de",
  237. "homepage": "https://dasprids.de/",
  238. "role": "Developer"
  239. }
  240. ],
  241. "description": "PHP 7.1 enum implementation",
  242. "keywords": [
  243. "enum",
  244. "map"
  245. ],
  246. "time": "2020-07-30T16:37:13+00:00"
  247. },
  248. {
  249. "name": "dnoegel/php-xdg-base-dir",
  250. "version": "v0.1.1",
  251. "source": {
  252. "type": "git",
  253. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  254. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  255. },
  256. "dist": {
  257. "type": "zip",
  258. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  259. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  260. "shasum": ""
  261. },
  262. "require": {
  263. "php": ">=5.3.2"
  264. },
  265. "require-dev": {
  266. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  267. },
  268. "type": "library",
  269. "autoload": {
  270. "psr-4": {
  271. "XdgBaseDir\\": "src/"
  272. }
  273. },
  274. "notification-url": "https://packagist.org/downloads/",
  275. "license": [
  276. "MIT"
  277. ],
  278. "description": "implementation of xdg base directory specification for php",
  279. "time": "2019-12-04T15:06:13+00:00"
  280. },
  281. {
  282. "name": "doctrine/inflector",
  283. "version": "2.0.3",
  284. "source": {
  285. "type": "git",
  286. "url": "https://github.com/doctrine/inflector.git",
  287. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  288. },
  289. "dist": {
  290. "type": "zip",
  291. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  292. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  293. "shasum": ""
  294. },
  295. "require": {
  296. "php": "^7.2 || ^8.0"
  297. },
  298. "require-dev": {
  299. "doctrine/coding-standard": "^7.0",
  300. "phpstan/phpstan": "^0.11",
  301. "phpstan/phpstan-phpunit": "^0.11",
  302. "phpstan/phpstan-strict-rules": "^0.11",
  303. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  304. },
  305. "type": "library",
  306. "extra": {
  307. "branch-alias": {
  308. "dev-master": "2.0.x-dev"
  309. }
  310. },
  311. "autoload": {
  312. "psr-4": {
  313. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  314. }
  315. },
  316. "notification-url": "https://packagist.org/downloads/",
  317. "license": [
  318. "MIT"
  319. ],
  320. "authors": [
  321. {
  322. "name": "Guilherme Blanco",
  323. "email": "guilhermeblanco@gmail.com"
  324. },
  325. {
  326. "name": "Roman Borschel",
  327. "email": "roman@code-factory.org"
  328. },
  329. {
  330. "name": "Benjamin Eberlei",
  331. "email": "kontakt@beberlei.de"
  332. },
  333. {
  334. "name": "Jonathan Wage",
  335. "email": "jonwage@gmail.com"
  336. },
  337. {
  338. "name": "Johannes Schmitt",
  339. "email": "schmittjoh@gmail.com"
  340. }
  341. ],
  342. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  343. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  344. "keywords": [
  345. "inflection",
  346. "inflector",
  347. "lowercase",
  348. "manipulation",
  349. "php",
  350. "plural",
  351. "singular",
  352. "strings",
  353. "uppercase",
  354. "words"
  355. ],
  356. "funding": [
  357. {
  358. "url": "https://www.doctrine-project.org/sponsorship.html",
  359. "type": "custom"
  360. },
  361. {
  362. "url": "https://www.patreon.com/phpdoctrine",
  363. "type": "patreon"
  364. },
  365. {
  366. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  367. "type": "tidelift"
  368. }
  369. ],
  370. "time": "2020-05-29T15:13:26+00:00"
  371. },
  372. {
  373. "name": "doctrine/lexer",
  374. "version": "1.2.1",
  375. "source": {
  376. "type": "git",
  377. "url": "https://github.com/doctrine/lexer.git",
  378. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  379. },
  380. "dist": {
  381. "type": "zip",
  382. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  383. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  384. "shasum": ""
  385. },
  386. "require": {
  387. "php": "^7.2 || ^8.0"
  388. },
  389. "require-dev": {
  390. "doctrine/coding-standard": "^6.0",
  391. "phpstan/phpstan": "^0.11.8",
  392. "phpunit/phpunit": "^8.2"
  393. },
  394. "type": "library",
  395. "extra": {
  396. "branch-alias": {
  397. "dev-master": "1.2.x-dev"
  398. }
  399. },
  400. "autoload": {
  401. "psr-4": {
  402. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  403. }
  404. },
  405. "notification-url": "https://packagist.org/downloads/",
  406. "license": [
  407. "MIT"
  408. ],
  409. "authors": [
  410. {
  411. "name": "Guilherme Blanco",
  412. "email": "guilhermeblanco@gmail.com"
  413. },
  414. {
  415. "name": "Roman Borschel",
  416. "email": "roman@code-factory.org"
  417. },
  418. {
  419. "name": "Johannes Schmitt",
  420. "email": "schmittjoh@gmail.com"
  421. }
  422. ],
  423. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  424. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  425. "keywords": [
  426. "annotations",
  427. "docblock",
  428. "lexer",
  429. "parser",
  430. "php"
  431. ],
  432. "funding": [
  433. {
  434. "url": "https://www.doctrine-project.org/sponsorship.html",
  435. "type": "custom"
  436. },
  437. {
  438. "url": "https://www.patreon.com/phpdoctrine",
  439. "type": "patreon"
  440. },
  441. {
  442. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  443. "type": "tidelift"
  444. }
  445. ],
  446. "time": "2020-05-25T17:44:05+00:00"
  447. },
  448. {
  449. "name": "dragonmantank/cron-expression",
  450. "version": "v2.3.0",
  451. "source": {
  452. "type": "git",
  453. "url": "https://github.com/dragonmantank/cron-expression.git",
  454. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27"
  455. },
  456. "dist": {
  457. "type": "zip",
  458. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  459. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  460. "shasum": ""
  461. },
  462. "require": {
  463. "php": "^7.0"
  464. },
  465. "require-dev": {
  466. "phpunit/phpunit": "^6.4|^7.0"
  467. },
  468. "type": "library",
  469. "extra": {
  470. "branch-alias": {
  471. "dev-master": "2.3-dev"
  472. }
  473. },
  474. "autoload": {
  475. "psr-4": {
  476. "Cron\\": "src/Cron/"
  477. }
  478. },
  479. "notification-url": "https://packagist.org/downloads/",
  480. "license": [
  481. "MIT"
  482. ],
  483. "authors": [
  484. {
  485. "name": "Michael Dowling",
  486. "email": "mtdowling@gmail.com",
  487. "homepage": "https://github.com/mtdowling"
  488. },
  489. {
  490. "name": "Chris Tankersley",
  491. "email": "chris@ctankersley.com",
  492. "homepage": "https://github.com/dragonmantank"
  493. }
  494. ],
  495. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  496. "keywords": [
  497. "cron",
  498. "schedule"
  499. ],
  500. "time": "2019-03-31T00:38:28+00:00"
  501. },
  502. {
  503. "name": "egulias/email-validator",
  504. "version": "2.1.19",
  505. "source": {
  506. "type": "git",
  507. "url": "https://github.com/egulias/EmailValidator.git",
  508. "reference": "840d5603eb84cc81a6a0382adac3293e57c1c64c"
  509. },
  510. "dist": {
  511. "type": "zip",
  512. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/840d5603eb84cc81a6a0382adac3293e57c1c64c",
  513. "reference": "840d5603eb84cc81a6a0382adac3293e57c1c64c",
  514. "shasum": ""
  515. },
  516. "require": {
  517. "doctrine/lexer": "^1.0.1",
  518. "php": ">=5.5",
  519. "symfony/polyfill-intl-idn": "^1.10"
  520. },
  521. "require-dev": {
  522. "dominicsayers/isemail": "^3.0.7",
  523. "phpunit/phpunit": "^4.8.36|^7.5.15",
  524. "satooshi/php-coveralls": "^1.0.1"
  525. },
  526. "suggest": {
  527. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  528. },
  529. "type": "library",
  530. "extra": {
  531. "branch-alias": {
  532. "dev-master": "2.1.x-dev"
  533. }
  534. },
  535. "autoload": {
  536. "psr-4": {
  537. "Egulias\\EmailValidator\\": "src"
  538. }
  539. },
  540. "notification-url": "https://packagist.org/downloads/",
  541. "license": [
  542. "MIT"
  543. ],
  544. "authors": [
  545. {
  546. "name": "Eduardo Gulias Davis"
  547. }
  548. ],
  549. "description": "A library for validating emails against several RFCs",
  550. "homepage": "https://github.com/egulias/EmailValidator",
  551. "keywords": [
  552. "email",
  553. "emailvalidation",
  554. "emailvalidator",
  555. "validation",
  556. "validator"
  557. ],
  558. "time": "2020-08-08T21:28:19+00:00"
  559. },
  560. {
  561. "name": "ezyang/htmlpurifier",
  562. "version": "v4.13.0",
  563. "source": {
  564. "type": "git",
  565. "url": "https://github.com/ezyang/htmlpurifier.git",
  566. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  567. },
  568. "dist": {
  569. "type": "zip",
  570. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  571. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  572. "shasum": ""
  573. },
  574. "require": {
  575. "php": ">=5.2"
  576. },
  577. "require-dev": {
  578. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  579. },
  580. "type": "library",
  581. "autoload": {
  582. "psr-0": {
  583. "HTMLPurifier": "library/"
  584. },
  585. "files": [
  586. "library/HTMLPurifier.composer.php"
  587. ],
  588. "exclude-from-classmap": [
  589. "/library/HTMLPurifier/Language/"
  590. ]
  591. },
  592. "notification-url": "https://packagist.org/downloads/",
  593. "license": [
  594. "LGPL-2.1-or-later"
  595. ],
  596. "authors": [
  597. {
  598. "name": "Edward Z. Yang",
  599. "email": "admin@htmlpurifier.org",
  600. "homepage": "http://ezyang.com"
  601. }
  602. ],
  603. "description": "Standards compliant HTML filter written in PHP",
  604. "homepage": "http://htmlpurifier.org/",
  605. "keywords": [
  606. "html"
  607. ],
  608. "time": "2020-06-29T00:56:53+00:00"
  609. },
  610. {
  611. "name": "fideloper/proxy",
  612. "version": "4.4.0",
  613. "source": {
  614. "type": "git",
  615. "url": "https://github.com/fideloper/TrustedProxy.git",
  616. "reference": "9beebf48a1c344ed67c1d36bb1b8709db7c3c1a8"
  617. },
  618. "dist": {
  619. "type": "zip",
  620. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/9beebf48a1c344ed67c1d36bb1b8709db7c3c1a8",
  621. "reference": "9beebf48a1c344ed67c1d36bb1b8709db7c3c1a8",
  622. "shasum": ""
  623. },
  624. "require": {
  625. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0",
  626. "php": ">=5.4.0"
  627. },
  628. "require-dev": {
  629. "illuminate/http": "^5.0|^6.0|^7.0|^8.0",
  630. "mockery/mockery": "^1.0",
  631. "phpunit/phpunit": "^6.0"
  632. },
  633. "type": "library",
  634. "extra": {
  635. "laravel": {
  636. "providers": [
  637. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  638. ]
  639. }
  640. },
  641. "autoload": {
  642. "psr-4": {
  643. "Fideloper\\Proxy\\": "src/"
  644. }
  645. },
  646. "notification-url": "https://packagist.org/downloads/",
  647. "license": [
  648. "MIT"
  649. ],
  650. "authors": [
  651. {
  652. "name": "Chris Fidao",
  653. "email": "fideloper@gmail.com"
  654. }
  655. ],
  656. "description": "Set trusted proxies for Laravel",
  657. "keywords": [
  658. "load balancing",
  659. "proxy",
  660. "trusted proxy"
  661. ],
  662. "time": "2020-06-23T01:36:47+00:00"
  663. },
  664. {
  665. "name": "fruitcake/laravel-cors",
  666. "version": "v2.0.1",
  667. "source": {
  668. "type": "git",
  669. "url": "https://github.com/fruitcake/laravel-cors.git",
  670. "reference": "dbfc311b25d4873c3c2382b26860be3567492bd6"
  671. },
  672. "dist": {
  673. "type": "zip",
  674. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/dbfc311b25d4873c3c2382b26860be3567492bd6",
  675. "reference": "dbfc311b25d4873c3c2382b26860be3567492bd6",
  676. "shasum": ""
  677. },
  678. "require": {
  679. "asm89/stack-cors": "^2.0.1",
  680. "illuminate/contracts": "^5.6|^6.0|^7.0|^8.0",
  681. "illuminate/support": "^5.6|^6.0|^7.0|^8.0",
  682. "php": ">=7.1",
  683. "symfony/http-foundation": "^4.0|^5.0",
  684. "symfony/http-kernel": "^4.0|^5.0"
  685. },
  686. "require-dev": {
  687. "laravel/framework": "^5.5|^6.0|^7.0|^8.0",
  688. "orchestra/dusk-updater": "^1.2",
  689. "orchestra/testbench": "^3.5|^4.0|^5.0|^6.0",
  690. "orchestra/testbench-dusk": "^5.1",
  691. "phpro/grumphp": "^0.16|^0.17",
  692. "phpunit/phpunit": "^6.0|^7.0|^8.0",
  693. "squizlabs/php_codesniffer": "^3.5"
  694. },
  695. "type": "library",
  696. "extra": {
  697. "branch-alias": {
  698. "dev-master": "2.0-dev"
  699. },
  700. "laravel": {
  701. "providers": [
  702. "Fruitcake\\Cors\\CorsServiceProvider"
  703. ]
  704. }
  705. },
  706. "autoload": {
  707. "psr-4": {
  708. "Fruitcake\\Cors\\": "src/"
  709. }
  710. },
  711. "notification-url": "https://packagist.org/downloads/",
  712. "license": [
  713. "MIT"
  714. ],
  715. "authors": [
  716. {
  717. "name": "Fruitcake",
  718. "homepage": "https://fruitcake.nl"
  719. },
  720. {
  721. "name": "Barry vd. Heuvel",
  722. "email": "barryvdh@gmail.com"
  723. }
  724. ],
  725. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  726. "keywords": [
  727. "api",
  728. "cors",
  729. "crossdomain",
  730. "laravel"
  731. ],
  732. "funding": [
  733. {
  734. "url": "https://github.com/barryvdh",
  735. "type": "github"
  736. }
  737. ],
  738. "time": "2020-05-31T07:30:16+00:00"
  739. },
  740. {
  741. "name": "guzzlehttp/guzzle",
  742. "version": "6.5.5",
  743. "source": {
  744. "type": "git",
  745. "url": "https://github.com/guzzle/guzzle.git",
  746. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  747. },
  748. "dist": {
  749. "type": "zip",
  750. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  751. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  752. "shasum": ""
  753. },
  754. "require": {
  755. "ext-json": "*",
  756. "guzzlehttp/promises": "^1.0",
  757. "guzzlehttp/psr7": "^1.6.1",
  758. "php": ">=5.5",
  759. "symfony/polyfill-intl-idn": "^1.17.0"
  760. },
  761. "require-dev": {
  762. "ext-curl": "*",
  763. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  764. "psr/log": "^1.1"
  765. },
  766. "suggest": {
  767. "psr/log": "Required for using the Log middleware"
  768. },
  769. "type": "library",
  770. "extra": {
  771. "branch-alias": {
  772. "dev-master": "6.5-dev"
  773. }
  774. },
  775. "autoload": {
  776. "psr-4": {
  777. "GuzzleHttp\\": "src/"
  778. },
  779. "files": [
  780. "src/functions_include.php"
  781. ]
  782. },
  783. "notification-url": "https://packagist.org/downloads/",
  784. "license": [
  785. "MIT"
  786. ],
  787. "authors": [
  788. {
  789. "name": "Michael Dowling",
  790. "email": "mtdowling@gmail.com",
  791. "homepage": "https://github.com/mtdowling"
  792. }
  793. ],
  794. "description": "Guzzle is a PHP HTTP client library",
  795. "homepage": "http://guzzlephp.org/",
  796. "keywords": [
  797. "client",
  798. "curl",
  799. "framework",
  800. "http",
  801. "http client",
  802. "rest",
  803. "web service"
  804. ],
  805. "time": "2020-06-16T21:01:06+00:00"
  806. },
  807. {
  808. "name": "guzzlehttp/promises",
  809. "version": "v1.3.1",
  810. "source": {
  811. "type": "git",
  812. "url": "https://github.com/guzzle/promises.git",
  813. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  814. },
  815. "dist": {
  816. "type": "zip",
  817. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  818. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  819. "shasum": ""
  820. },
  821. "require": {
  822. "php": ">=5.5.0"
  823. },
  824. "require-dev": {
  825. "phpunit/phpunit": "^4.0"
  826. },
  827. "type": "library",
  828. "extra": {
  829. "branch-alias": {
  830. "dev-master": "1.4-dev"
  831. }
  832. },
  833. "autoload": {
  834. "psr-4": {
  835. "GuzzleHttp\\Promise\\": "src/"
  836. },
  837. "files": [
  838. "src/functions_include.php"
  839. ]
  840. },
  841. "notification-url": "https://packagist.org/downloads/",
  842. "license": [
  843. "MIT"
  844. ],
  845. "authors": [
  846. {
  847. "name": "Michael Dowling",
  848. "email": "mtdowling@gmail.com",
  849. "homepage": "https://github.com/mtdowling"
  850. }
  851. ],
  852. "description": "Guzzle promises library",
  853. "keywords": [
  854. "promise"
  855. ],
  856. "time": "2016-12-20T10:07:11+00:00"
  857. },
  858. {
  859. "name": "guzzlehttp/psr7",
  860. "version": "1.6.1",
  861. "source": {
  862. "type": "git",
  863. "url": "https://github.com/guzzle/psr7.git",
  864. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  865. },
  866. "dist": {
  867. "type": "zip",
  868. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  869. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  870. "shasum": ""
  871. },
  872. "require": {
  873. "php": ">=5.4.0",
  874. "psr/http-message": "~1.0",
  875. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  876. },
  877. "provide": {
  878. "psr/http-message-implementation": "1.0"
  879. },
  880. "require-dev": {
  881. "ext-zlib": "*",
  882. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  883. },
  884. "suggest": {
  885. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  886. },
  887. "type": "library",
  888. "extra": {
  889. "branch-alias": {
  890. "dev-master": "1.6-dev"
  891. }
  892. },
  893. "autoload": {
  894. "psr-4": {
  895. "GuzzleHttp\\Psr7\\": "src/"
  896. },
  897. "files": [
  898. "src/functions_include.php"
  899. ]
  900. },
  901. "notification-url": "https://packagist.org/downloads/",
  902. "license": [
  903. "MIT"
  904. ],
  905. "authors": [
  906. {
  907. "name": "Michael Dowling",
  908. "email": "mtdowling@gmail.com",
  909. "homepage": "https://github.com/mtdowling"
  910. },
  911. {
  912. "name": "Tobias Schultze",
  913. "homepage": "https://github.com/Tobion"
  914. }
  915. ],
  916. "description": "PSR-7 message implementation that also provides common utility methods",
  917. "keywords": [
  918. "http",
  919. "message",
  920. "psr-7",
  921. "request",
  922. "response",
  923. "stream",
  924. "uri",
  925. "url"
  926. ],
  927. "time": "2019-07-01T23:21:34+00:00"
  928. },
  929. {
  930. "name": "intervention/image",
  931. "version": "2.5.1",
  932. "source": {
  933. "type": "git",
  934. "url": "https://github.com/Intervention/image.git",
  935. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
  936. },
  937. "dist": {
  938. "type": "zip",
  939. "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  940. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  941. "shasum": ""
  942. },
  943. "require": {
  944. "ext-fileinfo": "*",
  945. "guzzlehttp/psr7": "~1.1",
  946. "php": ">=5.4.0"
  947. },
  948. "require-dev": {
  949. "mockery/mockery": "~0.9.2",
  950. "phpunit/phpunit": "^4.8 || ^5.7"
  951. },
  952. "suggest": {
  953. "ext-gd": "to use GD library based image processing.",
  954. "ext-imagick": "to use Imagick based image processing.",
  955. "intervention/imagecache": "Caching extension for the Intervention Image library"
  956. },
  957. "type": "library",
  958. "extra": {
  959. "branch-alias": {
  960. "dev-master": "2.4-dev"
  961. },
  962. "laravel": {
  963. "providers": [
  964. "Intervention\\Image\\ImageServiceProvider"
  965. ],
  966. "aliases": {
  967. "Image": "Intervention\\Image\\Facades\\Image"
  968. }
  969. }
  970. },
  971. "autoload": {
  972. "psr-4": {
  973. "Intervention\\Image\\": "src/Intervention/Image"
  974. }
  975. },
  976. "notification-url": "https://packagist.org/downloads/",
  977. "license": [
  978. "MIT"
  979. ],
  980. "authors": [
  981. {
  982. "name": "Oliver Vogel",
  983. "email": "oliver@olivervogel.com",
  984. "homepage": "http://olivervogel.com/"
  985. }
  986. ],
  987. "description": "Image handling and manipulation library with support for Laravel integration",
  988. "homepage": "http://image.intervention.io/",
  989. "keywords": [
  990. "gd",
  991. "image",
  992. "imagick",
  993. "laravel",
  994. "thumbnail",
  995. "watermark"
  996. ],
  997. "time": "2019-11-02T09:15:47+00:00"
  998. },
  999. {
  1000. "name": "ipip/db",
  1001. "version": "v1.0.0",
  1002. "source": {
  1003. "type": "git",
  1004. "url": "https://github.com/ipipdotnet/ipdb-php.git",
  1005. "reference": "af42bf28b37dc76beccd7bbe2b0b0572e21f42cf"
  1006. },
  1007. "dist": {
  1008. "type": "zip",
  1009. "url": "https://api.github.com/repos/ipipdotnet/ipdb-php/zipball/af42bf28b37dc76beccd7bbe2b0b0572e21f42cf",
  1010. "reference": "af42bf28b37dc76beccd7bbe2b0b0572e21f42cf",
  1011. "shasum": ""
  1012. },
  1013. "require": {
  1014. "php": ">=5.4.0"
  1015. },
  1016. "type": "library",
  1017. "autoload": {
  1018. "psr-4": {
  1019. "ipip\\db\\": "src/ipip/db/"
  1020. }
  1021. },
  1022. "notification-url": "https://packagist.org/downloads/",
  1023. "license": [
  1024. "Apache-2.0"
  1025. ],
  1026. "authors": [
  1027. {
  1028. "name": "IPIP.net",
  1029. "email": "frk@ipip.net",
  1030. "homepage": "https://www.ipip.net"
  1031. }
  1032. ],
  1033. "description": "IPIP.net officially supported IP database ipdb format parsing library",
  1034. "homepage": "https://www.ipip.net",
  1035. "keywords": [
  1036. "IP",
  1037. "geo",
  1038. "geoip",
  1039. "geolocation",
  1040. "ipdb",
  1041. "ipip.net"
  1042. ],
  1043. "time": "2018-11-01T08:07:04+00:00"
  1044. },
  1045. {
  1046. "name": "itbdw/ip-database",
  1047. "version": "v2.0.7",
  1048. "source": {
  1049. "type": "git",
  1050. "url": "https://github.com/itbdw/ip-database.git",
  1051. "reference": "134835a851b45d4cccd7ea33215c313de74c6aca"
  1052. },
  1053. "dist": {
  1054. "type": "zip",
  1055. "url": "https://api.github.com/repos/itbdw/ip-database/zipball/134835a851b45d4cccd7ea33215c313de74c6aca",
  1056. "reference": "134835a851b45d4cccd7ea33215c313de74c6aca",
  1057. "shasum": ""
  1058. },
  1059. "require": {
  1060. "php": "~5.4|~7.0"
  1061. },
  1062. "type": "library",
  1063. "autoload": {
  1064. "psr-4": {
  1065. "itbdw\\Ip\\": "src/"
  1066. }
  1067. },
  1068. "notification-url": "https://packagist.org/downloads/",
  1069. "license": [
  1070. "MIT"
  1071. ],
  1072. "authors": [
  1073. {
  1074. "name": "马秉尧"
  1075. },
  1076. {
  1077. "name": "itbdw",
  1078. "email": "itbudaoweng@gmail.com",
  1079. "homepage": "http://github.com/itbdw",
  1080. "role": "Developer"
  1081. }
  1082. ],
  1083. "description": "IP位置数据库(解析为国家、省、市、县、运营商)",
  1084. "keywords": [
  1085. "China",
  1086. "Chinese",
  1087. "IP",
  1088. "database",
  1089. "location",
  1090. "位置",
  1091. "地区",
  1092. "数据库",
  1093. "纯真"
  1094. ],
  1095. "time": "2019-08-01T03:09:19+00:00"
  1096. },
  1097. {
  1098. "name": "jaybizzle/crawler-detect",
  1099. "version": "v1.2.99",
  1100. "source": {
  1101. "type": "git",
  1102. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  1103. "reference": "0ffea34489b258a2709bfe93a9553e1efa5d1904"
  1104. },
  1105. "dist": {
  1106. "type": "zip",
  1107. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/0ffea34489b258a2709bfe93a9553e1efa5d1904",
  1108. "reference": "0ffea34489b258a2709bfe93a9553e1efa5d1904",
  1109. "shasum": ""
  1110. },
  1111. "require": {
  1112. "php": ">=5.3.0"
  1113. },
  1114. "require-dev": {
  1115. "phpunit/phpunit": "^4.8|^5.5|^6.5",
  1116. "satooshi/php-coveralls": "1.*"
  1117. },
  1118. "type": "library",
  1119. "autoload": {
  1120. "psr-4": {
  1121. "Jaybizzle\\CrawlerDetect\\": "src/"
  1122. }
  1123. },
  1124. "notification-url": "https://packagist.org/downloads/",
  1125. "license": [
  1126. "MIT"
  1127. ],
  1128. "authors": [
  1129. {
  1130. "name": "Mark Beech",
  1131. "email": "m@rkbee.ch",
  1132. "role": "Developer"
  1133. }
  1134. ],
  1135. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  1136. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  1137. "keywords": [
  1138. "crawler",
  1139. "crawler detect",
  1140. "crawler detector",
  1141. "crawlerdetect",
  1142. "php crawler detect"
  1143. ],
  1144. "time": "2020-08-25T21:35:55+00:00"
  1145. },
  1146. {
  1147. "name": "jenssegers/agent",
  1148. "version": "v2.6.4",
  1149. "source": {
  1150. "type": "git",
  1151. "url": "https://github.com/jenssegers/agent.git",
  1152. "reference": "daa11c43729510b3700bc34d414664966b03bffe"
  1153. },
  1154. "dist": {
  1155. "type": "zip",
  1156. "url": "https://api.github.com/repos/jenssegers/agent/zipball/daa11c43729510b3700bc34d414664966b03bffe",
  1157. "reference": "daa11c43729510b3700bc34d414664966b03bffe",
  1158. "shasum": ""
  1159. },
  1160. "require": {
  1161. "jaybizzle/crawler-detect": "^1.2",
  1162. "mobiledetect/mobiledetectlib": "^2.7.6",
  1163. "php": ">=5.6"
  1164. },
  1165. "require-dev": {
  1166. "php-coveralls/php-coveralls": "^2.1",
  1167. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  1168. },
  1169. "suggest": {
  1170. "illuminate/support": "Required for laravel service providers"
  1171. },
  1172. "type": "library",
  1173. "extra": {
  1174. "branch-alias": {
  1175. "dev-master": "3.0-dev"
  1176. },
  1177. "laravel": {
  1178. "providers": [
  1179. "Jenssegers\\Agent\\AgentServiceProvider"
  1180. ],
  1181. "aliases": {
  1182. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  1183. }
  1184. }
  1185. },
  1186. "autoload": {
  1187. "psr-4": {
  1188. "Jenssegers\\Agent\\": "src/"
  1189. }
  1190. },
  1191. "notification-url": "https://packagist.org/downloads/",
  1192. "license": [
  1193. "MIT"
  1194. ],
  1195. "authors": [
  1196. {
  1197. "name": "Jens Segers",
  1198. "homepage": "https://jenssegers.com"
  1199. }
  1200. ],
  1201. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  1202. "homepage": "https://github.com/jenssegers/agent",
  1203. "keywords": [
  1204. "Agent",
  1205. "browser",
  1206. "desktop",
  1207. "laravel",
  1208. "mobile",
  1209. "platform",
  1210. "user agent",
  1211. "useragent"
  1212. ],
  1213. "funding": [
  1214. {
  1215. "url": "https://github.com/jenssegers",
  1216. "type": "github"
  1217. },
  1218. {
  1219. "url": "https://tidelift.com/funding/github/packagist/jenssegers/agent",
  1220. "type": "tidelift"
  1221. }
  1222. ],
  1223. "time": "2020-06-13T08:05:20+00:00"
  1224. },
  1225. {
  1226. "name": "laravel/framework",
  1227. "version": "v7.27.0",
  1228. "source": {
  1229. "type": "git",
  1230. "url": "https://github.com/laravel/framework.git",
  1231. "reference": "17777a92da9b3cf0026f26462d289d596420e6d0"
  1232. },
  1233. "dist": {
  1234. "type": "zip",
  1235. "url": "https://api.github.com/repos/laravel/framework/zipball/17777a92da9b3cf0026f26462d289d596420e6d0",
  1236. "reference": "17777a92da9b3cf0026f26462d289d596420e6d0",
  1237. "shasum": ""
  1238. },
  1239. "require": {
  1240. "doctrine/inflector": "^1.4|^2.0",
  1241. "dragonmantank/cron-expression": "^2.0",
  1242. "egulias/email-validator": "^2.1.10",
  1243. "ext-json": "*",
  1244. "ext-mbstring": "*",
  1245. "ext-openssl": "*",
  1246. "league/commonmark": "^1.3",
  1247. "league/flysystem": "^1.0.34",
  1248. "monolog/monolog": "^2.0",
  1249. "nesbot/carbon": "^2.17",
  1250. "opis/closure": "^3.1",
  1251. "php": "^7.2.5",
  1252. "psr/container": "^1.0",
  1253. "psr/simple-cache": "^1.0",
  1254. "ramsey/uuid": "^3.7|^4.0",
  1255. "swiftmailer/swiftmailer": "^6.0",
  1256. "symfony/console": "^5.0",
  1257. "symfony/error-handler": "^5.0",
  1258. "symfony/finder": "^5.0",
  1259. "symfony/http-foundation": "^5.0",
  1260. "symfony/http-kernel": "^5.0",
  1261. "symfony/mime": "^5.0",
  1262. "symfony/polyfill-php73": "^1.17",
  1263. "symfony/process": "^5.0",
  1264. "symfony/routing": "^5.0",
  1265. "symfony/var-dumper": "^5.0",
  1266. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1267. "vlucas/phpdotenv": "^4.0",
  1268. "voku/portable-ascii": "^1.4.8"
  1269. },
  1270. "conflict": {
  1271. "tightenco/collect": "<5.5.33"
  1272. },
  1273. "provide": {
  1274. "psr/container-implementation": "1.0"
  1275. },
  1276. "replace": {
  1277. "illuminate/auth": "self.version",
  1278. "illuminate/broadcasting": "self.version",
  1279. "illuminate/bus": "self.version",
  1280. "illuminate/cache": "self.version",
  1281. "illuminate/config": "self.version",
  1282. "illuminate/console": "self.version",
  1283. "illuminate/container": "self.version",
  1284. "illuminate/contracts": "self.version",
  1285. "illuminate/cookie": "self.version",
  1286. "illuminate/database": "self.version",
  1287. "illuminate/encryption": "self.version",
  1288. "illuminate/events": "self.version",
  1289. "illuminate/filesystem": "self.version",
  1290. "illuminate/hashing": "self.version",
  1291. "illuminate/http": "self.version",
  1292. "illuminate/log": "self.version",
  1293. "illuminate/mail": "self.version",
  1294. "illuminate/notifications": "self.version",
  1295. "illuminate/pagination": "self.version",
  1296. "illuminate/pipeline": "self.version",
  1297. "illuminate/queue": "self.version",
  1298. "illuminate/redis": "self.version",
  1299. "illuminate/routing": "self.version",
  1300. "illuminate/session": "self.version",
  1301. "illuminate/support": "self.version",
  1302. "illuminate/testing": "self.version",
  1303. "illuminate/translation": "self.version",
  1304. "illuminate/validation": "self.version",
  1305. "illuminate/view": "self.version"
  1306. },
  1307. "require-dev": {
  1308. "aws/aws-sdk-php": "^3.0",
  1309. "doctrine/dbal": "^2.6",
  1310. "filp/whoops": "^2.4",
  1311. "guzzlehttp/guzzle": "^6.3.1|^7.0",
  1312. "league/flysystem-cached-adapter": "^1.0",
  1313. "mockery/mockery": "^1.3.1",
  1314. "moontoast/math": "^1.1",
  1315. "orchestra/testbench-core": "^5.0",
  1316. "pda/pheanstalk": "^4.0",
  1317. "phpunit/phpunit": "^8.4|^9.0",
  1318. "predis/predis": "^1.1.1",
  1319. "symfony/cache": "^5.0"
  1320. },
  1321. "suggest": {
  1322. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.0).",
  1323. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  1324. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1325. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1326. "ext-memcached": "Required to use the memcache cache driver.",
  1327. "ext-pcntl": "Required to use all features of the queue worker.",
  1328. "ext-posix": "Required to use all features of the queue worker.",
  1329. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1330. "filp/whoops": "Required for friendly error pages in development (^2.4).",
  1331. "fzaninotto/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1332. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0).",
  1333. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1334. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1335. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1336. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1337. "mockery/mockery": "Required to use mocking (^1.3.1).",
  1338. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  1339. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1340. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1341. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.0).",
  1342. "predis/predis": "Required to use the predis connector (^1.1.2).",
  1343. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1344. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  1345. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  1346. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  1347. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1348. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1349. },
  1350. "type": "library",
  1351. "extra": {
  1352. "branch-alias": {
  1353. "dev-master": "7.x-dev"
  1354. }
  1355. },
  1356. "autoload": {
  1357. "files": [
  1358. "src/Illuminate/Foundation/helpers.php",
  1359. "src/Illuminate/Support/helpers.php"
  1360. ],
  1361. "psr-4": {
  1362. "Illuminate\\": "src/Illuminate/"
  1363. }
  1364. },
  1365. "notification-url": "https://packagist.org/downloads/",
  1366. "license": [
  1367. "MIT"
  1368. ],
  1369. "authors": [
  1370. {
  1371. "name": "Taylor Otwell",
  1372. "email": "taylor@laravel.com"
  1373. }
  1374. ],
  1375. "description": "The Laravel Framework.",
  1376. "homepage": "https://laravel.com",
  1377. "keywords": [
  1378. "framework",
  1379. "laravel"
  1380. ],
  1381. "time": "2020-09-01T13:41:48+00:00"
  1382. },
  1383. {
  1384. "name": "laravel/tinker",
  1385. "version": "v2.4.2",
  1386. "source": {
  1387. "type": "git",
  1388. "url": "https://github.com/laravel/tinker.git",
  1389. "reference": "58424c24e8aec31c3a3ac54eb3adb15e8a0a067b"
  1390. },
  1391. "dist": {
  1392. "type": "zip",
  1393. "url": "https://api.github.com/repos/laravel/tinker/zipball/58424c24e8aec31c3a3ac54eb3adb15e8a0a067b",
  1394. "reference": "58424c24e8aec31c3a3ac54eb3adb15e8a0a067b",
  1395. "shasum": ""
  1396. },
  1397. "require": {
  1398. "illuminate/console": "^6.0|^7.0|^8.0",
  1399. "illuminate/contracts": "^6.0|^7.0|^8.0",
  1400. "illuminate/support": "^6.0|^7.0|^8.0",
  1401. "php": "^7.2",
  1402. "psy/psysh": "^0.10.3",
  1403. "symfony/var-dumper": "^4.3|^5.0"
  1404. },
  1405. "require-dev": {
  1406. "mockery/mockery": "^1.3.1",
  1407. "phpunit/phpunit": "^8.4|^9.0"
  1408. },
  1409. "suggest": {
  1410. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  1411. },
  1412. "type": "library",
  1413. "extra": {
  1414. "branch-alias": {
  1415. "dev-master": "2.x-dev"
  1416. },
  1417. "laravel": {
  1418. "providers": [
  1419. "Laravel\\Tinker\\TinkerServiceProvider"
  1420. ]
  1421. }
  1422. },
  1423. "autoload": {
  1424. "psr-4": {
  1425. "Laravel\\Tinker\\": "src/"
  1426. }
  1427. },
  1428. "notification-url": "https://packagist.org/downloads/",
  1429. "license": [
  1430. "MIT"
  1431. ],
  1432. "authors": [
  1433. {
  1434. "name": "Taylor Otwell",
  1435. "email": "taylor@laravel.com"
  1436. }
  1437. ],
  1438. "description": "Powerful REPL for the Laravel framework.",
  1439. "keywords": [
  1440. "REPL",
  1441. "Tinker",
  1442. "laravel",
  1443. "psysh"
  1444. ],
  1445. "time": "2020-08-11T19:28:08+00:00"
  1446. },
  1447. {
  1448. "name": "league/commonmark",
  1449. "version": "1.5.4",
  1450. "source": {
  1451. "type": "git",
  1452. "url": "https://github.com/thephpleague/commonmark.git",
  1453. "reference": "21819c989e69bab07e933866ad30c7e3f32984ba"
  1454. },
  1455. "dist": {
  1456. "type": "zip",
  1457. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/21819c989e69bab07e933866ad30c7e3f32984ba",
  1458. "reference": "21819c989e69bab07e933866ad30c7e3f32984ba",
  1459. "shasum": ""
  1460. },
  1461. "require": {
  1462. "ext-mbstring": "*",
  1463. "php": "^7.1 || ^8.0"
  1464. },
  1465. "conflict": {
  1466. "scrutinizer/ocular": "1.7.*"
  1467. },
  1468. "require-dev": {
  1469. "cebe/markdown": "~1.0",
  1470. "commonmark/commonmark.js": "0.29.1",
  1471. "erusev/parsedown": "~1.0",
  1472. "ext-json": "*",
  1473. "github/gfm": "0.29.0",
  1474. "michelf/php-markdown": "~1.4",
  1475. "mikehaertl/php-shellcommand": "^1.4",
  1476. "phpstan/phpstan": "^0.12",
  1477. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  1478. "scrutinizer/ocular": "^1.5",
  1479. "symfony/finder": "^4.2"
  1480. },
  1481. "bin": [
  1482. "bin/commonmark"
  1483. ],
  1484. "type": "library",
  1485. "autoload": {
  1486. "psr-4": {
  1487. "League\\CommonMark\\": "src"
  1488. }
  1489. },
  1490. "notification-url": "https://packagist.org/downloads/",
  1491. "license": [
  1492. "BSD-3-Clause"
  1493. ],
  1494. "authors": [
  1495. {
  1496. "name": "Colin O'Dell",
  1497. "email": "colinodell@gmail.com",
  1498. "homepage": "https://www.colinodell.com",
  1499. "role": "Lead Developer"
  1500. }
  1501. ],
  1502. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  1503. "homepage": "https://commonmark.thephpleague.com",
  1504. "keywords": [
  1505. "commonmark",
  1506. "flavored",
  1507. "gfm",
  1508. "github",
  1509. "github-flavored",
  1510. "markdown",
  1511. "md",
  1512. "parser"
  1513. ],
  1514. "funding": [
  1515. {
  1516. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  1517. "type": "custom"
  1518. },
  1519. {
  1520. "url": "https://www.colinodell.com/sponsor",
  1521. "type": "custom"
  1522. },
  1523. {
  1524. "url": "https://www.paypal.me/colinpodell/10.00",
  1525. "type": "custom"
  1526. },
  1527. {
  1528. "url": "https://github.com/colinodell",
  1529. "type": "github"
  1530. },
  1531. {
  1532. "url": "https://www.patreon.com/colinodell",
  1533. "type": "patreon"
  1534. },
  1535. {
  1536. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1537. "type": "tidelift"
  1538. }
  1539. ],
  1540. "time": "2020-08-18T01:19:12+00:00"
  1541. },
  1542. {
  1543. "name": "league/flysystem",
  1544. "version": "1.1.3",
  1545. "source": {
  1546. "type": "git",
  1547. "url": "https://github.com/thephpleague/flysystem.git",
  1548. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  1549. },
  1550. "dist": {
  1551. "type": "zip",
  1552. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  1553. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  1554. "shasum": ""
  1555. },
  1556. "require": {
  1557. "ext-fileinfo": "*",
  1558. "league/mime-type-detection": "^1.3",
  1559. "php": "^7.2.5 || ^8.0"
  1560. },
  1561. "conflict": {
  1562. "league/flysystem-sftp": "<1.0.6"
  1563. },
  1564. "require-dev": {
  1565. "phpspec/prophecy": "^1.11.1",
  1566. "phpunit/phpunit": "^8.5.8"
  1567. },
  1568. "suggest": {
  1569. "ext-fileinfo": "Required for MimeType",
  1570. "ext-ftp": "Allows you to use FTP server storage",
  1571. "ext-openssl": "Allows you to use FTPS server storage",
  1572. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1573. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1574. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1575. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1576. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1577. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1578. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1579. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1580. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1581. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1582. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1583. },
  1584. "type": "library",
  1585. "extra": {
  1586. "branch-alias": {
  1587. "dev-master": "1.1-dev"
  1588. }
  1589. },
  1590. "autoload": {
  1591. "psr-4": {
  1592. "League\\Flysystem\\": "src/"
  1593. }
  1594. },
  1595. "notification-url": "https://packagist.org/downloads/",
  1596. "license": [
  1597. "MIT"
  1598. ],
  1599. "authors": [
  1600. {
  1601. "name": "Frank de Jonge",
  1602. "email": "info@frenky.net"
  1603. }
  1604. ],
  1605. "description": "Filesystem abstraction: Many filesystems, one API.",
  1606. "keywords": [
  1607. "Cloud Files",
  1608. "WebDAV",
  1609. "abstraction",
  1610. "aws",
  1611. "cloud",
  1612. "copy.com",
  1613. "dropbox",
  1614. "file systems",
  1615. "files",
  1616. "filesystem",
  1617. "filesystems",
  1618. "ftp",
  1619. "rackspace",
  1620. "remote",
  1621. "s3",
  1622. "sftp",
  1623. "storage"
  1624. ],
  1625. "funding": [
  1626. {
  1627. "url": "https://offset.earth/frankdejonge",
  1628. "type": "other"
  1629. }
  1630. ],
  1631. "time": "2020-08-23T07:39:11+00:00"
  1632. },
  1633. {
  1634. "name": "league/mime-type-detection",
  1635. "version": "1.4.0",
  1636. "source": {
  1637. "type": "git",
  1638. "url": "https://github.com/thephpleague/mime-type-detection.git",
  1639. "reference": "fda190b62b962d96a069fcc414d781db66d65b69"
  1640. },
  1641. "dist": {
  1642. "type": "zip",
  1643. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/fda190b62b962d96a069fcc414d781db66d65b69",
  1644. "reference": "fda190b62b962d96a069fcc414d781db66d65b69",
  1645. "shasum": ""
  1646. },
  1647. "require": {
  1648. "ext-fileinfo": "*",
  1649. "php": "^7.2 || ^8.0"
  1650. },
  1651. "require-dev": {
  1652. "phpstan/phpstan": "^0.12.36",
  1653. "phpunit/phpunit": "^8.5.8"
  1654. },
  1655. "type": "library",
  1656. "autoload": {
  1657. "psr-4": {
  1658. "League\\MimeTypeDetection\\": "src"
  1659. }
  1660. },
  1661. "notification-url": "https://packagist.org/downloads/",
  1662. "license": [
  1663. "MIT"
  1664. ],
  1665. "authors": [
  1666. {
  1667. "name": "Frank de Jonge",
  1668. "email": "info@frankdejonge.nl"
  1669. }
  1670. ],
  1671. "description": "Mime-type detection for Flysystem",
  1672. "funding": [
  1673. {
  1674. "url": "https://github.com/frankdejonge",
  1675. "type": "github"
  1676. },
  1677. {
  1678. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1679. "type": "tidelift"
  1680. }
  1681. ],
  1682. "time": "2020-08-09T10:34:01+00:00"
  1683. },
  1684. {
  1685. "name": "maennchen/zipstream-php",
  1686. "version": "2.1.0",
  1687. "source": {
  1688. "type": "git",
  1689. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  1690. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  1691. },
  1692. "dist": {
  1693. "type": "zip",
  1694. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  1695. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  1696. "shasum": ""
  1697. },
  1698. "require": {
  1699. "myclabs/php-enum": "^1.5",
  1700. "php": ">= 7.1",
  1701. "psr/http-message": "^1.0",
  1702. "symfony/polyfill-mbstring": "^1.0"
  1703. },
  1704. "require-dev": {
  1705. "ext-zip": "*",
  1706. "guzzlehttp/guzzle": ">= 6.3",
  1707. "mikey179/vfsstream": "^1.6",
  1708. "phpunit/phpunit": ">= 7.5"
  1709. },
  1710. "type": "library",
  1711. "autoload": {
  1712. "psr-4": {
  1713. "ZipStream\\": "src/"
  1714. }
  1715. },
  1716. "notification-url": "https://packagist.org/downloads/",
  1717. "license": [
  1718. "MIT"
  1719. ],
  1720. "authors": [
  1721. {
  1722. "name": "Paul Duncan",
  1723. "email": "pabs@pablotron.org"
  1724. },
  1725. {
  1726. "name": "Jonatan Männchen",
  1727. "email": "jonatan@maennchen.ch"
  1728. },
  1729. {
  1730. "name": "Jesse Donat",
  1731. "email": "donatj@gmail.com"
  1732. },
  1733. {
  1734. "name": "András Kolesár",
  1735. "email": "kolesar@kolesar.hu"
  1736. }
  1737. ],
  1738. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  1739. "keywords": [
  1740. "stream",
  1741. "zip"
  1742. ],
  1743. "funding": [
  1744. {
  1745. "url": "https://opencollective.com/zipstream",
  1746. "type": "open_collective"
  1747. }
  1748. ],
  1749. "time": "2020-05-30T13:11:16+00:00"
  1750. },
  1751. {
  1752. "name": "markbaker/complex",
  1753. "version": "1.5.0",
  1754. "source": {
  1755. "type": "git",
  1756. "url": "https://github.com/MarkBaker/PHPComplex.git",
  1757. "reference": "c3131244e29c08d44fefb49e0dd35021e9e39dd2"
  1758. },
  1759. "dist": {
  1760. "type": "zip",
  1761. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/c3131244e29c08d44fefb49e0dd35021e9e39dd2",
  1762. "reference": "c3131244e29c08d44fefb49e0dd35021e9e39dd2",
  1763. "shasum": ""
  1764. },
  1765. "require": {
  1766. "php": "^5.6.0|^7.0"
  1767. },
  1768. "require-dev": {
  1769. "dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
  1770. "phpcompatibility/php-compatibility": "^9.0",
  1771. "phpdocumentor/phpdocumentor": "2.*",
  1772. "phploc/phploc": "^4.0|^5.0|^6.0|^7.0",
  1773. "phpmd/phpmd": "2.*",
  1774. "phpunit/phpunit": "^4.8.35|^5.0|^6.0|^7.0",
  1775. "sebastian/phpcpd": "2.*",
  1776. "squizlabs/php_codesniffer": "^3.4.0"
  1777. },
  1778. "type": "library",
  1779. "autoload": {
  1780. "psr-4": {
  1781. "Complex\\": "classes/src/"
  1782. },
  1783. "files": [
  1784. "classes/src/functions/abs.php",
  1785. "classes/src/functions/acos.php",
  1786. "classes/src/functions/acosh.php",
  1787. "classes/src/functions/acot.php",
  1788. "classes/src/functions/acoth.php",
  1789. "classes/src/functions/acsc.php",
  1790. "classes/src/functions/acsch.php",
  1791. "classes/src/functions/argument.php",
  1792. "classes/src/functions/asec.php",
  1793. "classes/src/functions/asech.php",
  1794. "classes/src/functions/asin.php",
  1795. "classes/src/functions/asinh.php",
  1796. "classes/src/functions/atan.php",
  1797. "classes/src/functions/atanh.php",
  1798. "classes/src/functions/conjugate.php",
  1799. "classes/src/functions/cos.php",
  1800. "classes/src/functions/cosh.php",
  1801. "classes/src/functions/cot.php",
  1802. "classes/src/functions/coth.php",
  1803. "classes/src/functions/csc.php",
  1804. "classes/src/functions/csch.php",
  1805. "classes/src/functions/exp.php",
  1806. "classes/src/functions/inverse.php",
  1807. "classes/src/functions/ln.php",
  1808. "classes/src/functions/log2.php",
  1809. "classes/src/functions/log10.php",
  1810. "classes/src/functions/negative.php",
  1811. "classes/src/functions/pow.php",
  1812. "classes/src/functions/rho.php",
  1813. "classes/src/functions/sec.php",
  1814. "classes/src/functions/sech.php",
  1815. "classes/src/functions/sin.php",
  1816. "classes/src/functions/sinh.php",
  1817. "classes/src/functions/sqrt.php",
  1818. "classes/src/functions/tan.php",
  1819. "classes/src/functions/tanh.php",
  1820. "classes/src/functions/theta.php",
  1821. "classes/src/operations/add.php",
  1822. "classes/src/operations/subtract.php",
  1823. "classes/src/operations/multiply.php",
  1824. "classes/src/operations/divideby.php",
  1825. "classes/src/operations/divideinto.php"
  1826. ]
  1827. },
  1828. "notification-url": "https://packagist.org/downloads/",
  1829. "license": [
  1830. "MIT"
  1831. ],
  1832. "authors": [
  1833. {
  1834. "name": "Mark Baker",
  1835. "email": "mark@lange.demon.co.uk"
  1836. }
  1837. ],
  1838. "description": "PHP Class for working with complex numbers",
  1839. "homepage": "https://github.com/MarkBaker/PHPComplex",
  1840. "keywords": [
  1841. "complex",
  1842. "mathematics"
  1843. ],
  1844. "time": "2020-08-26T19:47:57+00:00"
  1845. },
  1846. {
  1847. "name": "markbaker/matrix",
  1848. "version": "1.2.1",
  1849. "source": {
  1850. "type": "git",
  1851. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  1852. "reference": "182d44c3b2e3b063468f7481ae3ef71c69dc1409"
  1853. },
  1854. "dist": {
  1855. "type": "zip",
  1856. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/182d44c3b2e3b063468f7481ae3ef71c69dc1409",
  1857. "reference": "182d44c3b2e3b063468f7481ae3ef71c69dc1409",
  1858. "shasum": ""
  1859. },
  1860. "require": {
  1861. "php": "^5.6.0|^7.0.0"
  1862. },
  1863. "require-dev": {
  1864. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  1865. "phpcompatibility/php-compatibility": "dev-master",
  1866. "phploc/phploc": "^4",
  1867. "phpmd/phpmd": "dev-master",
  1868. "phpunit/phpunit": "^5.7|^6.0|7.0",
  1869. "sebastian/phpcpd": "^3.0",
  1870. "squizlabs/php_codesniffer": "^3.0@dev"
  1871. },
  1872. "type": "library",
  1873. "autoload": {
  1874. "psr-4": {
  1875. "Matrix\\": "classes/src/"
  1876. },
  1877. "files": [
  1878. "classes/src/functions/adjoint.php",
  1879. "classes/src/functions/antidiagonal.php",
  1880. "classes/src/functions/cofactors.php",
  1881. "classes/src/functions/determinant.php",
  1882. "classes/src/functions/diagonal.php",
  1883. "classes/src/functions/identity.php",
  1884. "classes/src/functions/inverse.php",
  1885. "classes/src/functions/minors.php",
  1886. "classes/src/functions/trace.php",
  1887. "classes/src/functions/transpose.php",
  1888. "classes/src/operations/add.php",
  1889. "classes/src/operations/directsum.php",
  1890. "classes/src/operations/subtract.php",
  1891. "classes/src/operations/multiply.php",
  1892. "classes/src/operations/divideby.php",
  1893. "classes/src/operations/divideinto.php"
  1894. ]
  1895. },
  1896. "notification-url": "https://packagist.org/downloads/",
  1897. "license": [
  1898. "MIT"
  1899. ],
  1900. "authors": [
  1901. {
  1902. "name": "Mark Baker",
  1903. "email": "mark@lange.demon.co.uk"
  1904. }
  1905. ],
  1906. "description": "PHP Class for working with matrices",
  1907. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  1908. "keywords": [
  1909. "mathematics",
  1910. "matrix",
  1911. "vector"
  1912. ],
  1913. "time": "2020-08-28T19:41:55+00:00"
  1914. },
  1915. {
  1916. "name": "mews/captcha",
  1917. "version": "3.1.1",
  1918. "source": {
  1919. "type": "git",
  1920. "url": "https://github.com/mewebstudio/captcha.git",
  1921. "reference": "700ce567b79d26b92f49704edfd1aeeb60940910"
  1922. },
  1923. "dist": {
  1924. "type": "zip",
  1925. "url": "https://api.github.com/repos/mewebstudio/captcha/zipball/700ce567b79d26b92f49704edfd1aeeb60940910",
  1926. "reference": "700ce567b79d26b92f49704edfd1aeeb60940910",
  1927. "shasum": ""
  1928. },
  1929. "require": {
  1930. "ext-gd": "*",
  1931. "illuminate/config": "~5.0|^6.0|^7.0",
  1932. "illuminate/filesystem": "~5.0|^6.0|^7.0",
  1933. "illuminate/hashing": "~5.0|^6.0|^7.0",
  1934. "illuminate/session": "~5.0|^6.0|^7.0",
  1935. "illuminate/support": "~5.0|^6.0|^7.0",
  1936. "intervention/image": "~2.5",
  1937. "php": "^7.2"
  1938. },
  1939. "require-dev": {
  1940. "mockery/mockery": "^1.0",
  1941. "phpunit/phpunit": "^8.5"
  1942. },
  1943. "type": "package",
  1944. "extra": {
  1945. "laravel": {
  1946. "providers": [
  1947. "Mews\\Captcha\\CaptchaServiceProvider"
  1948. ],
  1949. "aliases": {
  1950. "Captcha": "Mews\\Captcha\\Facades\\Captcha"
  1951. }
  1952. }
  1953. },
  1954. "autoload": {
  1955. "psr-4": {
  1956. "Mews\\Captcha\\": "src/"
  1957. },
  1958. "files": [
  1959. "src/helpers.php"
  1960. ]
  1961. },
  1962. "notification-url": "https://packagist.org/downloads/",
  1963. "license": [
  1964. "MIT"
  1965. ],
  1966. "authors": [
  1967. {
  1968. "name": "Muharrem ERİN",
  1969. "email": "me@mewebstudio.com",
  1970. "homepage": "https://github.com/mewebstudio",
  1971. "role": "Developer"
  1972. }
  1973. ],
  1974. "description": "Laravel 5 & 6 Captcha Package",
  1975. "homepage": "https://github.com/mewebstudio/captcha",
  1976. "keywords": [
  1977. "captcha",
  1978. "laravel5 Security",
  1979. "laravel6 Captcha",
  1980. "laravel6 Security"
  1981. ],
  1982. "time": "2020-08-21T15:58:16+00:00"
  1983. },
  1984. {
  1985. "name": "mews/purifier",
  1986. "version": "3.2.3",
  1987. "source": {
  1988. "type": "git",
  1989. "url": "https://github.com/mewebstudio/Purifier.git",
  1990. "reference": "01445654edf1a737efd9c93bbbe5c90ddf006712"
  1991. },
  1992. "dist": {
  1993. "type": "zip",
  1994. "url": "https://api.github.com/repos/mewebstudio/Purifier/zipball/01445654edf1a737efd9c93bbbe5c90ddf006712",
  1995. "reference": "01445654edf1a737efd9c93bbbe5c90ddf006712",
  1996. "shasum": ""
  1997. },
  1998. "require": {
  1999. "ezyang/htmlpurifier": "4.13.*",
  2000. "illuminate/config": "^5.1|^6.0|^7.0",
  2001. "illuminate/filesystem": "^5.1|^6.0|^7.0",
  2002. "illuminate/support": "^5.1|^6.0|^7.0",
  2003. "php": "^7.2"
  2004. },
  2005. "require-dev": {
  2006. "graham-campbell/testbench": "^3.2",
  2007. "mockery/mockery": "0.9.*",
  2008. "phpunit/phpunit": "^4.8|^5.0",
  2009. "scrutinizer/ocular": "^1.3"
  2010. },
  2011. "suggest": {
  2012. "laravel/framework": "To test the Laravel bindings",
  2013. "laravel/lumen-framework": "To test the Lumen bindings"
  2014. },
  2015. "type": "package",
  2016. "extra": {
  2017. "laravel": {
  2018. "providers": [
  2019. "Mews\\Purifier\\PurifierServiceProvider"
  2020. ],
  2021. "aliases": {
  2022. "Purifier": "Mews\\Purifier\\Facades\\Purifier"
  2023. }
  2024. }
  2025. },
  2026. "autoload": {
  2027. "psr-4": {
  2028. "Mews\\Purifier\\": "src/"
  2029. },
  2030. "files": [
  2031. "src/helpers.php"
  2032. ]
  2033. },
  2034. "notification-url": "https://packagist.org/downloads/",
  2035. "license": [
  2036. "MIT"
  2037. ],
  2038. "authors": [
  2039. {
  2040. "name": "Muharrem ERİN",
  2041. "email": "me@mewebstudio.com",
  2042. "homepage": "https://github.com/mewebstudio",
  2043. "role": "Developer"
  2044. }
  2045. ],
  2046. "description": "Laravel 5/6/7 HtmlPurifier Package",
  2047. "homepage": "https://github.com/mewebstudio/purifier",
  2048. "keywords": [
  2049. "Purifier",
  2050. "htmlpurifier",
  2051. "laravel5 HtmlPurifier",
  2052. "laravel5 Purifier",
  2053. "laravel5 Security",
  2054. "laravel6 HtmlPurifier",
  2055. "laravel6 Purifier",
  2056. "laravel6 Security",
  2057. "security",
  2058. "xss"
  2059. ],
  2060. "time": "2020-07-10T17:14:50+00:00"
  2061. },
  2062. {
  2063. "name": "mobiledetect/mobiledetectlib",
  2064. "version": "2.8.34",
  2065. "source": {
  2066. "type": "git",
  2067. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  2068. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b"
  2069. },
  2070. "dist": {
  2071. "type": "zip",
  2072. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  2073. "reference": "6f8113f57a508494ca36acbcfa2dc2d923c7ed5b",
  2074. "shasum": ""
  2075. },
  2076. "require": {
  2077. "php": ">=5.0.0"
  2078. },
  2079. "require-dev": {
  2080. "phpunit/phpunit": "~4.8.35||~5.7"
  2081. },
  2082. "type": "library",
  2083. "autoload": {
  2084. "classmap": [
  2085. "Mobile_Detect.php"
  2086. ],
  2087. "psr-0": {
  2088. "Detection": "namespaced/"
  2089. }
  2090. },
  2091. "notification-url": "https://packagist.org/downloads/",
  2092. "license": [
  2093. "MIT"
  2094. ],
  2095. "authors": [
  2096. {
  2097. "name": "Serban Ghita",
  2098. "email": "serbanghita@gmail.com",
  2099. "homepage": "http://mobiledetect.net",
  2100. "role": "Developer"
  2101. }
  2102. ],
  2103. "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.",
  2104. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  2105. "keywords": [
  2106. "detect mobile devices",
  2107. "mobile",
  2108. "mobile detect",
  2109. "mobile detector",
  2110. "php mobile detect"
  2111. ],
  2112. "time": "2019-09-18T18:44:20+00:00"
  2113. },
  2114. {
  2115. "name": "monolog/monolog",
  2116. "version": "2.1.1",
  2117. "source": {
  2118. "type": "git",
  2119. "url": "https://github.com/Seldaek/monolog.git",
  2120. "reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5"
  2121. },
  2122. "dist": {
  2123. "type": "zip",
  2124. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f9eee5cec93dfb313a38b6b288741e84e53f02d5",
  2125. "reference": "f9eee5cec93dfb313a38b6b288741e84e53f02d5",
  2126. "shasum": ""
  2127. },
  2128. "require": {
  2129. "php": ">=7.2",
  2130. "psr/log": "^1.0.1"
  2131. },
  2132. "provide": {
  2133. "psr/log-implementation": "1.0.0"
  2134. },
  2135. "require-dev": {
  2136. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2137. "doctrine/couchdb": "~1.0@dev",
  2138. "elasticsearch/elasticsearch": "^6.0",
  2139. "graylog2/gelf-php": "^1.4.2",
  2140. "php-amqplib/php-amqplib": "~2.4",
  2141. "php-console/php-console": "^3.1.3",
  2142. "php-parallel-lint/php-parallel-lint": "^1.0",
  2143. "phpspec/prophecy": "^1.6.1",
  2144. "phpunit/phpunit": "^8.5",
  2145. "predis/predis": "^1.1",
  2146. "rollbar/rollbar": "^1.3",
  2147. "ruflin/elastica": ">=0.90 <3.0",
  2148. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2149. },
  2150. "suggest": {
  2151. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2152. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2153. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2154. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2155. "ext-mbstring": "Allow to work properly with unicode symbols",
  2156. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2157. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2158. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2159. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2160. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2161. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2162. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2163. },
  2164. "type": "library",
  2165. "extra": {
  2166. "branch-alias": {
  2167. "dev-master": "2.x-dev"
  2168. }
  2169. },
  2170. "autoload": {
  2171. "psr-4": {
  2172. "Monolog\\": "src/Monolog"
  2173. }
  2174. },
  2175. "notification-url": "https://packagist.org/downloads/",
  2176. "license": [
  2177. "MIT"
  2178. ],
  2179. "authors": [
  2180. {
  2181. "name": "Jordi Boggiano",
  2182. "email": "j.boggiano@seld.be",
  2183. "homepage": "http://seld.be"
  2184. }
  2185. ],
  2186. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2187. "homepage": "http://github.com/Seldaek/monolog",
  2188. "keywords": [
  2189. "log",
  2190. "logging",
  2191. "psr-3"
  2192. ],
  2193. "funding": [
  2194. {
  2195. "url": "https://github.com/Seldaek",
  2196. "type": "github"
  2197. },
  2198. {
  2199. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2200. "type": "tidelift"
  2201. }
  2202. ],
  2203. "time": "2020-07-23T08:41:23+00:00"
  2204. },
  2205. {
  2206. "name": "myclabs/php-enum",
  2207. "version": "1.7.6",
  2208. "source": {
  2209. "type": "git",
  2210. "url": "https://github.com/myclabs/php-enum.git",
  2211. "reference": "5f36467c7a87e20fbdc51e524fd8f9d1de80187c"
  2212. },
  2213. "dist": {
  2214. "type": "zip",
  2215. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/5f36467c7a87e20fbdc51e524fd8f9d1de80187c",
  2216. "reference": "5f36467c7a87e20fbdc51e524fd8f9d1de80187c",
  2217. "shasum": ""
  2218. },
  2219. "require": {
  2220. "ext-json": "*",
  2221. "php": ">=7.1"
  2222. },
  2223. "require-dev": {
  2224. "phpunit/phpunit": "^7",
  2225. "squizlabs/php_codesniffer": "1.*",
  2226. "vimeo/psalm": "^3.8"
  2227. },
  2228. "type": "library",
  2229. "autoload": {
  2230. "psr-4": {
  2231. "MyCLabs\\Enum\\": "src/"
  2232. }
  2233. },
  2234. "notification-url": "https://packagist.org/downloads/",
  2235. "license": [
  2236. "MIT"
  2237. ],
  2238. "authors": [
  2239. {
  2240. "name": "PHP Enum contributors",
  2241. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2242. }
  2243. ],
  2244. "description": "PHP Enum implementation",
  2245. "homepage": "http://github.com/myclabs/php-enum",
  2246. "keywords": [
  2247. "enum"
  2248. ],
  2249. "time": "2020-02-14T08:15:52+00:00"
  2250. },
  2251. {
  2252. "name": "nesbot/carbon",
  2253. "version": "2.39.1",
  2254. "source": {
  2255. "type": "git",
  2256. "url": "https://github.com/briannesbitt/Carbon.git",
  2257. "reference": "7af467873250583cc967a59ee9df29fabab193c1"
  2258. },
  2259. "dist": {
  2260. "type": "zip",
  2261. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/7af467873250583cc967a59ee9df29fabab193c1",
  2262. "reference": "7af467873250583cc967a59ee9df29fabab193c1",
  2263. "shasum": ""
  2264. },
  2265. "require": {
  2266. "ext-json": "*",
  2267. "php": "^7.1.8 || ^8.0",
  2268. "symfony/polyfill-mbstring": "^1.0",
  2269. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  2270. },
  2271. "require-dev": {
  2272. "doctrine/orm": "^2.7",
  2273. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  2274. "kylekatarnls/multi-tester": "^2.0",
  2275. "phpmd/phpmd": "^2.9",
  2276. "phpstan/extension-installer": "^1.0",
  2277. "phpstan/phpstan": "^0.12.35",
  2278. "phpunit/phpunit": "^7.5 || ^8.0",
  2279. "squizlabs/php_codesniffer": "^3.4"
  2280. },
  2281. "bin": [
  2282. "bin/carbon"
  2283. ],
  2284. "type": "library",
  2285. "extra": {
  2286. "branch-alias": {
  2287. "dev-master": "2.x-dev",
  2288. "dev-3.x": "3.x-dev"
  2289. },
  2290. "laravel": {
  2291. "providers": [
  2292. "Carbon\\Laravel\\ServiceProvider"
  2293. ]
  2294. },
  2295. "phpstan": {
  2296. "includes": [
  2297. "extension.neon"
  2298. ]
  2299. }
  2300. },
  2301. "autoload": {
  2302. "psr-4": {
  2303. "Carbon\\": "src/Carbon/"
  2304. }
  2305. },
  2306. "notification-url": "https://packagist.org/downloads/",
  2307. "license": [
  2308. "MIT"
  2309. ],
  2310. "authors": [
  2311. {
  2312. "name": "Brian Nesbitt",
  2313. "email": "brian@nesbot.com",
  2314. "homepage": "http://nesbot.com"
  2315. },
  2316. {
  2317. "name": "kylekatarnls",
  2318. "homepage": "http://github.com/kylekatarnls"
  2319. }
  2320. ],
  2321. "description": "An API extension for DateTime that supports 281 different languages.",
  2322. "homepage": "http://carbon.nesbot.com",
  2323. "keywords": [
  2324. "date",
  2325. "datetime",
  2326. "time"
  2327. ],
  2328. "funding": [
  2329. {
  2330. "url": "https://opencollective.com/Carbon",
  2331. "type": "open_collective"
  2332. },
  2333. {
  2334. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  2335. "type": "tidelift"
  2336. }
  2337. ],
  2338. "time": "2020-09-04T13:11:37+00:00"
  2339. },
  2340. {
  2341. "name": "nikic/php-parser",
  2342. "version": "v4.9.1",
  2343. "source": {
  2344. "type": "git",
  2345. "url": "https://github.com/nikic/PHP-Parser.git",
  2346. "reference": "88e519766fc58bd46b8265561fb79b54e2e00b28"
  2347. },
  2348. "dist": {
  2349. "type": "zip",
  2350. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/88e519766fc58bd46b8265561fb79b54e2e00b28",
  2351. "reference": "88e519766fc58bd46b8265561fb79b54e2e00b28",
  2352. "shasum": ""
  2353. },
  2354. "require": {
  2355. "ext-tokenizer": "*",
  2356. "php": ">=7.0"
  2357. },
  2358. "require-dev": {
  2359. "ircmaxell/php-yacc": "^0.0.7",
  2360. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  2361. },
  2362. "bin": [
  2363. "bin/php-parse"
  2364. ],
  2365. "type": "library",
  2366. "extra": {
  2367. "branch-alias": {
  2368. "dev-master": "4.9-dev"
  2369. }
  2370. },
  2371. "autoload": {
  2372. "psr-4": {
  2373. "PhpParser\\": "lib/PhpParser"
  2374. }
  2375. },
  2376. "notification-url": "https://packagist.org/downloads/",
  2377. "license": [
  2378. "BSD-3-Clause"
  2379. ],
  2380. "authors": [
  2381. {
  2382. "name": "Nikita Popov"
  2383. }
  2384. ],
  2385. "description": "A PHP parser written in PHP",
  2386. "keywords": [
  2387. "parser",
  2388. "php"
  2389. ],
  2390. "time": "2020-08-30T16:15:20+00:00"
  2391. },
  2392. {
  2393. "name": "openlss/lib-array2xml",
  2394. "version": "1.0.0",
  2395. "source": {
  2396. "type": "git",
  2397. "url": "https://github.com/nullivex/lib-array2xml.git",
  2398. "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90"
  2399. },
  2400. "dist": {
  2401. "type": "zip",
  2402. "url": "https://api.github.com/repos/nullivex/lib-array2xml/zipball/a91f18a8dfc69ffabe5f9b068bc39bb202c81d90",
  2403. "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90",
  2404. "shasum": ""
  2405. },
  2406. "require": {
  2407. "php": ">=5.3.2"
  2408. },
  2409. "type": "library",
  2410. "autoload": {
  2411. "psr-0": {
  2412. "LSS": ""
  2413. }
  2414. },
  2415. "notification-url": "https://packagist.org/downloads/",
  2416. "license": [
  2417. "Apache-2.0"
  2418. ],
  2419. "authors": [
  2420. {
  2421. "name": "Bryan Tong",
  2422. "email": "bryan@nullivex.com",
  2423. "homepage": "https://www.nullivex.com"
  2424. },
  2425. {
  2426. "name": "Tony Butler",
  2427. "email": "spudz76@gmail.com",
  2428. "homepage": "https://www.nullivex.com"
  2429. }
  2430. ],
  2431. "description": "Array2XML conversion library credit to lalit.org",
  2432. "homepage": "https://www.nullivex.com",
  2433. "keywords": [
  2434. "array",
  2435. "array conversion",
  2436. "xml",
  2437. "xml conversion"
  2438. ],
  2439. "time": "2019-03-29T20:06:56+00:00"
  2440. },
  2441. {
  2442. "name": "opis/closure",
  2443. "version": "3.5.6",
  2444. "source": {
  2445. "type": "git",
  2446. "url": "https://github.com/opis/closure.git",
  2447. "reference": "e8d34df855b0a0549a300cb8cb4db472556e8aa9"
  2448. },
  2449. "dist": {
  2450. "type": "zip",
  2451. "url": "https://api.github.com/repos/opis/closure/zipball/e8d34df855b0a0549a300cb8cb4db472556e8aa9",
  2452. "reference": "e8d34df855b0a0549a300cb8cb4db472556e8aa9",
  2453. "shasum": ""
  2454. },
  2455. "require": {
  2456. "php": "^5.4 || ^7.0"
  2457. },
  2458. "require-dev": {
  2459. "jeremeamia/superclosure": "^2.0",
  2460. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  2461. },
  2462. "type": "library",
  2463. "extra": {
  2464. "branch-alias": {
  2465. "dev-master": "3.5.x-dev"
  2466. }
  2467. },
  2468. "autoload": {
  2469. "psr-4": {
  2470. "Opis\\Closure\\": "src/"
  2471. },
  2472. "files": [
  2473. "functions.php"
  2474. ]
  2475. },
  2476. "notification-url": "https://packagist.org/downloads/",
  2477. "license": [
  2478. "MIT"
  2479. ],
  2480. "authors": [
  2481. {
  2482. "name": "Marius Sarca",
  2483. "email": "marius.sarca@gmail.com"
  2484. },
  2485. {
  2486. "name": "Sorin Sarca",
  2487. "email": "sarca_sorin@hotmail.com"
  2488. }
  2489. ],
  2490. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  2491. "homepage": "https://opis.io/closure",
  2492. "keywords": [
  2493. "anonymous functions",
  2494. "closure",
  2495. "function",
  2496. "serializable",
  2497. "serialization",
  2498. "serialize"
  2499. ],
  2500. "time": "2020-08-11T08:46:50+00:00"
  2501. },
  2502. {
  2503. "name": "overtrue/laravel-lang",
  2504. "version": "4.0.1",
  2505. "source": {
  2506. "type": "git",
  2507. "url": "https://github.com/overtrue/laravel-lang.git",
  2508. "reference": "8622a7d41fa52c502acaf63a4c416e849e02dfc7"
  2509. },
  2510. "dist": {
  2511. "type": "zip",
  2512. "url": "https://api.github.com/repos/overtrue/laravel-lang/zipball/8622a7d41fa52c502acaf63a4c416e849e02dfc7",
  2513. "reference": "8622a7d41fa52c502acaf63a4c416e849e02dfc7",
  2514. "shasum": ""
  2515. },
  2516. "require": {
  2517. "caouecs/laravel-lang": "~7.0",
  2518. "symfony/process": "^5.0.0"
  2519. },
  2520. "require-dev": {
  2521. "laravel/framework": "~7.0"
  2522. },
  2523. "type": "library",
  2524. "extra": {
  2525. "laravel": {
  2526. "providers": [
  2527. "Overtrue\\LaravelLang\\TranslationServiceProvider"
  2528. ]
  2529. }
  2530. },
  2531. "autoload": {
  2532. "psr-4": {
  2533. "Overtrue\\LaravelLang\\": "src/"
  2534. },
  2535. "files": [
  2536. "src/helpers.php"
  2537. ]
  2538. },
  2539. "notification-url": "https://packagist.org/downloads/",
  2540. "license": [
  2541. "MIT"
  2542. ],
  2543. "authors": [
  2544. {
  2545. "name": "overtrue",
  2546. "email": "anzhengchao@gmail.com"
  2547. }
  2548. ],
  2549. "description": "List of 52 languages for Laravel 5",
  2550. "keywords": [
  2551. "i18n",
  2552. "languages",
  2553. "laravel",
  2554. "locale",
  2555. "overtrue"
  2556. ],
  2557. "funding": [
  2558. {
  2559. "url": "https://www.patreon.com/overtrue",
  2560. "type": "patreon"
  2561. }
  2562. ],
  2563. "time": "2020-07-21T06:36:31+00:00"
  2564. },
  2565. {
  2566. "name": "paragonie/random_compat",
  2567. "version": "v9.99.99",
  2568. "source": {
  2569. "type": "git",
  2570. "url": "https://github.com/paragonie/random_compat.git",
  2571. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  2572. },
  2573. "dist": {
  2574. "type": "zip",
  2575. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  2576. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  2577. "shasum": ""
  2578. },
  2579. "require": {
  2580. "php": "^7"
  2581. },
  2582. "require-dev": {
  2583. "phpunit/phpunit": "4.*|5.*",
  2584. "vimeo/psalm": "^1"
  2585. },
  2586. "suggest": {
  2587. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2588. },
  2589. "type": "library",
  2590. "notification-url": "https://packagist.org/downloads/",
  2591. "license": [
  2592. "MIT"
  2593. ],
  2594. "authors": [
  2595. {
  2596. "name": "Paragon Initiative Enterprises",
  2597. "email": "security@paragonie.com",
  2598. "homepage": "https://paragonie.com"
  2599. }
  2600. ],
  2601. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2602. "keywords": [
  2603. "csprng",
  2604. "polyfill",
  2605. "pseudorandom",
  2606. "random"
  2607. ],
  2608. "time": "2018-07-02T15:55:56+00:00"
  2609. },
  2610. {
  2611. "name": "phpoffice/phpspreadsheet",
  2612. "version": "1.14.1",
  2613. "source": {
  2614. "type": "git",
  2615. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  2616. "reference": "2383aad5689778470491581442aab38cec41bf1d"
  2617. },
  2618. "dist": {
  2619. "type": "zip",
  2620. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/2383aad5689778470491581442aab38cec41bf1d",
  2621. "reference": "2383aad5689778470491581442aab38cec41bf1d",
  2622. "shasum": ""
  2623. },
  2624. "require": {
  2625. "ext-ctype": "*",
  2626. "ext-dom": "*",
  2627. "ext-fileinfo": "*",
  2628. "ext-gd": "*",
  2629. "ext-iconv": "*",
  2630. "ext-libxml": "*",
  2631. "ext-mbstring": "*",
  2632. "ext-simplexml": "*",
  2633. "ext-xml": "*",
  2634. "ext-xmlreader": "*",
  2635. "ext-xmlwriter": "*",
  2636. "ext-zip": "*",
  2637. "ext-zlib": "*",
  2638. "maennchen/zipstream-php": "^2.1",
  2639. "markbaker/complex": "^1.4",
  2640. "markbaker/matrix": "^1.2",
  2641. "php": "^7.2",
  2642. "psr/http-client": "^1.0",
  2643. "psr/http-factory": "^1.0",
  2644. "psr/simple-cache": "^1.0"
  2645. },
  2646. "require-dev": {
  2647. "dompdf/dompdf": "^0.8.5",
  2648. "friendsofphp/php-cs-fixer": "^2.16",
  2649. "jpgraph/jpgraph": "^4.0",
  2650. "mpdf/mpdf": "^8.0",
  2651. "phpcompatibility/php-compatibility": "^9.3",
  2652. "phpunit/phpunit": "^8.5",
  2653. "squizlabs/php_codesniffer": "^3.5",
  2654. "tecnickcom/tcpdf": "^6.3"
  2655. },
  2656. "suggest": {
  2657. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  2658. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  2659. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  2660. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  2661. },
  2662. "type": "library",
  2663. "autoload": {
  2664. "psr-4": {
  2665. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  2666. }
  2667. },
  2668. "notification-url": "https://packagist.org/downloads/",
  2669. "license": [
  2670. "MIT"
  2671. ],
  2672. "authors": [
  2673. {
  2674. "name": "Maarten Balliauw",
  2675. "homepage": "https://blog.maartenballiauw.be"
  2676. },
  2677. {
  2678. "name": "Mark Baker",
  2679. "homepage": "https://markbakeruk.net"
  2680. },
  2681. {
  2682. "name": "Franck Lefevre",
  2683. "homepage": "https://rootslabs.net"
  2684. },
  2685. {
  2686. "name": "Erik Tilt"
  2687. },
  2688. {
  2689. "name": "Adrien Crivelli"
  2690. }
  2691. ],
  2692. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  2693. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  2694. "keywords": [
  2695. "OpenXML",
  2696. "excel",
  2697. "gnumeric",
  2698. "ods",
  2699. "php",
  2700. "spreadsheet",
  2701. "xls",
  2702. "xlsx"
  2703. ],
  2704. "time": "2020-07-19T09:51:35+00:00"
  2705. },
  2706. {
  2707. "name": "phpoption/phpoption",
  2708. "version": "1.7.5",
  2709. "source": {
  2710. "type": "git",
  2711. "url": "https://github.com/schmittjoh/php-option.git",
  2712. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  2713. },
  2714. "dist": {
  2715. "type": "zip",
  2716. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  2717. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  2718. "shasum": ""
  2719. },
  2720. "require": {
  2721. "php": "^5.5.9 || ^7.0 || ^8.0"
  2722. },
  2723. "require-dev": {
  2724. "bamarni/composer-bin-plugin": "^1.4.1",
  2725. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  2726. },
  2727. "type": "library",
  2728. "extra": {
  2729. "branch-alias": {
  2730. "dev-master": "1.7-dev"
  2731. }
  2732. },
  2733. "autoload": {
  2734. "psr-4": {
  2735. "PhpOption\\": "src/PhpOption/"
  2736. }
  2737. },
  2738. "notification-url": "https://packagist.org/downloads/",
  2739. "license": [
  2740. "Apache-2.0"
  2741. ],
  2742. "authors": [
  2743. {
  2744. "name": "Johannes M. Schmitt",
  2745. "email": "schmittjoh@gmail.com"
  2746. },
  2747. {
  2748. "name": "Graham Campbell",
  2749. "email": "graham@alt-three.com"
  2750. }
  2751. ],
  2752. "description": "Option Type for PHP",
  2753. "keywords": [
  2754. "language",
  2755. "option",
  2756. "php",
  2757. "type"
  2758. ],
  2759. "funding": [
  2760. {
  2761. "url": "https://github.com/GrahamCampbell",
  2762. "type": "github"
  2763. },
  2764. {
  2765. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  2766. "type": "tidelift"
  2767. }
  2768. ],
  2769. "time": "2020-07-20T17:29:33+00:00"
  2770. },
  2771. {
  2772. "name": "psr/container",
  2773. "version": "1.0.0",
  2774. "source": {
  2775. "type": "git",
  2776. "url": "https://github.com/php-fig/container.git",
  2777. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  2778. },
  2779. "dist": {
  2780. "type": "zip",
  2781. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2782. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2783. "shasum": ""
  2784. },
  2785. "require": {
  2786. "php": ">=5.3.0"
  2787. },
  2788. "type": "library",
  2789. "extra": {
  2790. "branch-alias": {
  2791. "dev-master": "1.0.x-dev"
  2792. }
  2793. },
  2794. "autoload": {
  2795. "psr-4": {
  2796. "Psr\\Container\\": "src/"
  2797. }
  2798. },
  2799. "notification-url": "https://packagist.org/downloads/",
  2800. "license": [
  2801. "MIT"
  2802. ],
  2803. "authors": [
  2804. {
  2805. "name": "PHP-FIG",
  2806. "homepage": "http://www.php-fig.org/"
  2807. }
  2808. ],
  2809. "description": "Common Container Interface (PHP FIG PSR-11)",
  2810. "homepage": "https://github.com/php-fig/container",
  2811. "keywords": [
  2812. "PSR-11",
  2813. "container",
  2814. "container-interface",
  2815. "container-interop",
  2816. "psr"
  2817. ],
  2818. "time": "2017-02-14T16:28:37+00:00"
  2819. },
  2820. {
  2821. "name": "psr/event-dispatcher",
  2822. "version": "1.0.0",
  2823. "source": {
  2824. "type": "git",
  2825. "url": "https://github.com/php-fig/event-dispatcher.git",
  2826. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2827. },
  2828. "dist": {
  2829. "type": "zip",
  2830. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2831. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2832. "shasum": ""
  2833. },
  2834. "require": {
  2835. "php": ">=7.2.0"
  2836. },
  2837. "type": "library",
  2838. "extra": {
  2839. "branch-alias": {
  2840. "dev-master": "1.0.x-dev"
  2841. }
  2842. },
  2843. "autoload": {
  2844. "psr-4": {
  2845. "Psr\\EventDispatcher\\": "src/"
  2846. }
  2847. },
  2848. "notification-url": "https://packagist.org/downloads/",
  2849. "license": [
  2850. "MIT"
  2851. ],
  2852. "authors": [
  2853. {
  2854. "name": "PHP-FIG",
  2855. "homepage": "http://www.php-fig.org/"
  2856. }
  2857. ],
  2858. "description": "Standard interfaces for event handling.",
  2859. "keywords": [
  2860. "events",
  2861. "psr",
  2862. "psr-14"
  2863. ],
  2864. "time": "2019-01-08T18:20:26+00:00"
  2865. },
  2866. {
  2867. "name": "psr/http-client",
  2868. "version": "1.0.1",
  2869. "source": {
  2870. "type": "git",
  2871. "url": "https://github.com/php-fig/http-client.git",
  2872. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  2873. },
  2874. "dist": {
  2875. "type": "zip",
  2876. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2877. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2878. "shasum": ""
  2879. },
  2880. "require": {
  2881. "php": "^7.0 || ^8.0",
  2882. "psr/http-message": "^1.0"
  2883. },
  2884. "type": "library",
  2885. "extra": {
  2886. "branch-alias": {
  2887. "dev-master": "1.0.x-dev"
  2888. }
  2889. },
  2890. "autoload": {
  2891. "psr-4": {
  2892. "Psr\\Http\\Client\\": "src/"
  2893. }
  2894. },
  2895. "notification-url": "https://packagist.org/downloads/",
  2896. "license": [
  2897. "MIT"
  2898. ],
  2899. "authors": [
  2900. {
  2901. "name": "PHP-FIG",
  2902. "homepage": "http://www.php-fig.org/"
  2903. }
  2904. ],
  2905. "description": "Common interface for HTTP clients",
  2906. "homepage": "https://github.com/php-fig/http-client",
  2907. "keywords": [
  2908. "http",
  2909. "http-client",
  2910. "psr",
  2911. "psr-18"
  2912. ],
  2913. "time": "2020-06-29T06:28:15+00:00"
  2914. },
  2915. {
  2916. "name": "psr/http-factory",
  2917. "version": "1.0.1",
  2918. "source": {
  2919. "type": "git",
  2920. "url": "https://github.com/php-fig/http-factory.git",
  2921. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  2922. },
  2923. "dist": {
  2924. "type": "zip",
  2925. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2926. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2927. "shasum": ""
  2928. },
  2929. "require": {
  2930. "php": ">=7.0.0",
  2931. "psr/http-message": "^1.0"
  2932. },
  2933. "type": "library",
  2934. "extra": {
  2935. "branch-alias": {
  2936. "dev-master": "1.0.x-dev"
  2937. }
  2938. },
  2939. "autoload": {
  2940. "psr-4": {
  2941. "Psr\\Http\\Message\\": "src/"
  2942. }
  2943. },
  2944. "notification-url": "https://packagist.org/downloads/",
  2945. "license": [
  2946. "MIT"
  2947. ],
  2948. "authors": [
  2949. {
  2950. "name": "PHP-FIG",
  2951. "homepage": "http://www.php-fig.org/"
  2952. }
  2953. ],
  2954. "description": "Common interfaces for PSR-7 HTTP message factories",
  2955. "keywords": [
  2956. "factory",
  2957. "http",
  2958. "message",
  2959. "psr",
  2960. "psr-17",
  2961. "psr-7",
  2962. "request",
  2963. "response"
  2964. ],
  2965. "time": "2019-04-30T12:38:16+00:00"
  2966. },
  2967. {
  2968. "name": "psr/http-message",
  2969. "version": "1.0.1",
  2970. "source": {
  2971. "type": "git",
  2972. "url": "https://github.com/php-fig/http-message.git",
  2973. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2974. },
  2975. "dist": {
  2976. "type": "zip",
  2977. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2978. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2979. "shasum": ""
  2980. },
  2981. "require": {
  2982. "php": ">=5.3.0"
  2983. },
  2984. "type": "library",
  2985. "extra": {
  2986. "branch-alias": {
  2987. "dev-master": "1.0.x-dev"
  2988. }
  2989. },
  2990. "autoload": {
  2991. "psr-4": {
  2992. "Psr\\Http\\Message\\": "src/"
  2993. }
  2994. },
  2995. "notification-url": "https://packagist.org/downloads/",
  2996. "license": [
  2997. "MIT"
  2998. ],
  2999. "authors": [
  3000. {
  3001. "name": "PHP-FIG",
  3002. "homepage": "http://www.php-fig.org/"
  3003. }
  3004. ],
  3005. "description": "Common interface for HTTP messages",
  3006. "homepage": "https://github.com/php-fig/http-message",
  3007. "keywords": [
  3008. "http",
  3009. "http-message",
  3010. "psr",
  3011. "psr-7",
  3012. "request",
  3013. "response"
  3014. ],
  3015. "time": "2016-08-06T14:39:51+00:00"
  3016. },
  3017. {
  3018. "name": "psr/log",
  3019. "version": "1.1.3",
  3020. "source": {
  3021. "type": "git",
  3022. "url": "https://github.com/php-fig/log.git",
  3023. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  3024. },
  3025. "dist": {
  3026. "type": "zip",
  3027. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  3028. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  3029. "shasum": ""
  3030. },
  3031. "require": {
  3032. "php": ">=5.3.0"
  3033. },
  3034. "type": "library",
  3035. "extra": {
  3036. "branch-alias": {
  3037. "dev-master": "1.1.x-dev"
  3038. }
  3039. },
  3040. "autoload": {
  3041. "psr-4": {
  3042. "Psr\\Log\\": "Psr/Log/"
  3043. }
  3044. },
  3045. "notification-url": "https://packagist.org/downloads/",
  3046. "license": [
  3047. "MIT"
  3048. ],
  3049. "authors": [
  3050. {
  3051. "name": "PHP-FIG",
  3052. "homepage": "http://www.php-fig.org/"
  3053. }
  3054. ],
  3055. "description": "Common interface for logging libraries",
  3056. "homepage": "https://github.com/php-fig/log",
  3057. "keywords": [
  3058. "log",
  3059. "psr",
  3060. "psr-3"
  3061. ],
  3062. "time": "2020-03-23T09:12:05+00:00"
  3063. },
  3064. {
  3065. "name": "psr/simple-cache",
  3066. "version": "1.0.1",
  3067. "source": {
  3068. "type": "git",
  3069. "url": "https://github.com/php-fig/simple-cache.git",
  3070. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3071. },
  3072. "dist": {
  3073. "type": "zip",
  3074. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3075. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3076. "shasum": ""
  3077. },
  3078. "require": {
  3079. "php": ">=5.3.0"
  3080. },
  3081. "type": "library",
  3082. "extra": {
  3083. "branch-alias": {
  3084. "dev-master": "1.0.x-dev"
  3085. }
  3086. },
  3087. "autoload": {
  3088. "psr-4": {
  3089. "Psr\\SimpleCache\\": "src/"
  3090. }
  3091. },
  3092. "notification-url": "https://packagist.org/downloads/",
  3093. "license": [
  3094. "MIT"
  3095. ],
  3096. "authors": [
  3097. {
  3098. "name": "PHP-FIG",
  3099. "homepage": "http://www.php-fig.org/"
  3100. }
  3101. ],
  3102. "description": "Common interfaces for simple caching",
  3103. "keywords": [
  3104. "cache",
  3105. "caching",
  3106. "psr",
  3107. "psr-16",
  3108. "simple-cache"
  3109. ],
  3110. "time": "2017-10-23T01:57:42+00:00"
  3111. },
  3112. {
  3113. "name": "psy/psysh",
  3114. "version": "v0.10.4",
  3115. "source": {
  3116. "type": "git",
  3117. "url": "https://github.com/bobthecow/psysh.git",
  3118. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560"
  3119. },
  3120. "dist": {
  3121. "type": "zip",
  3122. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560",
  3123. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560",
  3124. "shasum": ""
  3125. },
  3126. "require": {
  3127. "dnoegel/php-xdg-base-dir": "0.1.*",
  3128. "ext-json": "*",
  3129. "ext-tokenizer": "*",
  3130. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  3131. "php": "^8.0 || ^7.0 || ^5.5.9",
  3132. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  3133. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  3134. },
  3135. "require-dev": {
  3136. "bamarni/composer-bin-plugin": "^1.2",
  3137. "hoa/console": "3.17.*"
  3138. },
  3139. "suggest": {
  3140. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3141. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3142. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  3143. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  3144. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  3145. },
  3146. "bin": [
  3147. "bin/psysh"
  3148. ],
  3149. "type": "library",
  3150. "extra": {
  3151. "branch-alias": {
  3152. "dev-master": "0.10.x-dev"
  3153. }
  3154. },
  3155. "autoload": {
  3156. "files": [
  3157. "src/functions.php"
  3158. ],
  3159. "psr-4": {
  3160. "Psy\\": "src/"
  3161. }
  3162. },
  3163. "notification-url": "https://packagist.org/downloads/",
  3164. "license": [
  3165. "MIT"
  3166. ],
  3167. "authors": [
  3168. {
  3169. "name": "Justin Hileman",
  3170. "email": "justin@justinhileman.info",
  3171. "homepage": "http://justinhileman.com"
  3172. }
  3173. ],
  3174. "description": "An interactive shell for modern PHP.",
  3175. "homepage": "http://psysh.org",
  3176. "keywords": [
  3177. "REPL",
  3178. "console",
  3179. "interactive",
  3180. "shell"
  3181. ],
  3182. "time": "2020-05-03T19:32:03+00:00"
  3183. },
  3184. {
  3185. "name": "ralouphie/getallheaders",
  3186. "version": "3.0.3",
  3187. "source": {
  3188. "type": "git",
  3189. "url": "https://github.com/ralouphie/getallheaders.git",
  3190. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3191. },
  3192. "dist": {
  3193. "type": "zip",
  3194. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3195. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3196. "shasum": ""
  3197. },
  3198. "require": {
  3199. "php": ">=5.6"
  3200. },
  3201. "require-dev": {
  3202. "php-coveralls/php-coveralls": "^2.1",
  3203. "phpunit/phpunit": "^5 || ^6.5"
  3204. },
  3205. "type": "library",
  3206. "autoload": {
  3207. "files": [
  3208. "src/getallheaders.php"
  3209. ]
  3210. },
  3211. "notification-url": "https://packagist.org/downloads/",
  3212. "license": [
  3213. "MIT"
  3214. ],
  3215. "authors": [
  3216. {
  3217. "name": "Ralph Khattar",
  3218. "email": "ralph.khattar@gmail.com"
  3219. }
  3220. ],
  3221. "description": "A polyfill for getallheaders.",
  3222. "time": "2019-03-08T08:55:37+00:00"
  3223. },
  3224. {
  3225. "name": "ramsey/collection",
  3226. "version": "1.1.0",
  3227. "source": {
  3228. "type": "git",
  3229. "url": "https://github.com/ramsey/collection.git",
  3230. "reference": "044184884e3c803e4cbb6451386cb71562939b18"
  3231. },
  3232. "dist": {
  3233. "type": "zip",
  3234. "url": "https://api.github.com/repos/ramsey/collection/zipball/044184884e3c803e4cbb6451386cb71562939b18",
  3235. "reference": "044184884e3c803e4cbb6451386cb71562939b18",
  3236. "shasum": ""
  3237. },
  3238. "require": {
  3239. "php": "^7.2 || ^8"
  3240. },
  3241. "require-dev": {
  3242. "captainhook/captainhook": "^5.3",
  3243. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  3244. "ergebnis/composer-normalize": "^2.6",
  3245. "fzaninotto/faker": "^1.5",
  3246. "hamcrest/hamcrest-php": "^2",
  3247. "jangregor/phpstan-prophecy": "^0.6",
  3248. "mockery/mockery": "^1.3",
  3249. "phpstan/extension-installer": "^1",
  3250. "phpstan/phpstan": "^0.12.32",
  3251. "phpstan/phpstan-mockery": "^0.12.5",
  3252. "phpstan/phpstan-phpunit": "^0.12.11",
  3253. "phpunit/phpunit": "^8.5",
  3254. "psy/psysh": "^0.10.4",
  3255. "slevomat/coding-standard": "^6.3",
  3256. "squizlabs/php_codesniffer": "^3.5",
  3257. "vimeo/psalm": "^3.12.2"
  3258. },
  3259. "type": "library",
  3260. "autoload": {
  3261. "psr-4": {
  3262. "Ramsey\\Collection\\": "src/"
  3263. }
  3264. },
  3265. "notification-url": "https://packagist.org/downloads/",
  3266. "license": [
  3267. "MIT"
  3268. ],
  3269. "authors": [
  3270. {
  3271. "name": "Ben Ramsey",
  3272. "email": "ben@benramsey.com",
  3273. "homepage": "https://benramsey.com"
  3274. }
  3275. ],
  3276. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  3277. "keywords": [
  3278. "array",
  3279. "collection",
  3280. "hash",
  3281. "map",
  3282. "queue",
  3283. "set"
  3284. ],
  3285. "funding": [
  3286. {
  3287. "url": "https://github.com/ramsey",
  3288. "type": "github"
  3289. }
  3290. ],
  3291. "time": "2020-08-11T00:57:21+00:00"
  3292. },
  3293. {
  3294. "name": "ramsey/uuid",
  3295. "version": "4.1.1",
  3296. "source": {
  3297. "type": "git",
  3298. "url": "https://github.com/ramsey/uuid.git",
  3299. "reference": "cd4032040a750077205918c86049aa0f43d22947"
  3300. },
  3301. "dist": {
  3302. "type": "zip",
  3303. "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
  3304. "reference": "cd4032040a750077205918c86049aa0f43d22947",
  3305. "shasum": ""
  3306. },
  3307. "require": {
  3308. "brick/math": "^0.8 || ^0.9",
  3309. "ext-json": "*",
  3310. "php": "^7.2 || ^8",
  3311. "ramsey/collection": "^1.0",
  3312. "symfony/polyfill-ctype": "^1.8"
  3313. },
  3314. "replace": {
  3315. "rhumsaa/uuid": "self.version"
  3316. },
  3317. "require-dev": {
  3318. "codeception/aspect-mock": "^3",
  3319. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  3320. "doctrine/annotations": "^1.8",
  3321. "goaop/framework": "^2",
  3322. "mockery/mockery": "^1.3",
  3323. "moontoast/math": "^1.1",
  3324. "paragonie/random-lib": "^2",
  3325. "php-mock/php-mock-mockery": "^1.3",
  3326. "php-mock/php-mock-phpunit": "^2.5",
  3327. "php-parallel-lint/php-parallel-lint": "^1.1",
  3328. "phpbench/phpbench": "^0.17.1",
  3329. "phpstan/extension-installer": "^1.0",
  3330. "phpstan/phpstan": "^0.12",
  3331. "phpstan/phpstan-mockery": "^0.12",
  3332. "phpstan/phpstan-phpunit": "^0.12",
  3333. "phpunit/phpunit": "^8.5",
  3334. "psy/psysh": "^0.10.0",
  3335. "slevomat/coding-standard": "^6.0",
  3336. "squizlabs/php_codesniffer": "^3.5",
  3337. "vimeo/psalm": "3.9.4"
  3338. },
  3339. "suggest": {
  3340. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  3341. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  3342. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  3343. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  3344. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  3345. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  3346. },
  3347. "type": "library",
  3348. "extra": {
  3349. "branch-alias": {
  3350. "dev-master": "4.x-dev"
  3351. }
  3352. },
  3353. "autoload": {
  3354. "psr-4": {
  3355. "Ramsey\\Uuid\\": "src/"
  3356. },
  3357. "files": [
  3358. "src/functions.php"
  3359. ]
  3360. },
  3361. "notification-url": "https://packagist.org/downloads/",
  3362. "license": [
  3363. "MIT"
  3364. ],
  3365. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  3366. "homepage": "https://github.com/ramsey/uuid",
  3367. "keywords": [
  3368. "guid",
  3369. "identifier",
  3370. "uuid"
  3371. ],
  3372. "funding": [
  3373. {
  3374. "url": "https://github.com/ramsey",
  3375. "type": "github"
  3376. }
  3377. ],
  3378. "time": "2020-08-18T17:17:46+00:00"
  3379. },
  3380. {
  3381. "name": "rap2hpoutre/laravel-log-viewer",
  3382. "version": "v1.6.1",
  3383. "source": {
  3384. "type": "git",
  3385. "url": "https://github.com/rap2hpoutre/laravel-log-viewer.git",
  3386. "reference": "40a6a9e8343673bd34a83419335c7b2496e9a477"
  3387. },
  3388. "dist": {
  3389. "type": "zip",
  3390. "url": "https://api.github.com/repos/rap2hpoutre/laravel-log-viewer/zipball/40a6a9e8343673bd34a83419335c7b2496e9a477",
  3391. "reference": "40a6a9e8343673bd34a83419335c7b2496e9a477",
  3392. "shasum": ""
  3393. },
  3394. "require": {
  3395. "illuminate/support": "4.2.*|5.*|^6.0|^7.0",
  3396. "php": ">=5.4.0"
  3397. },
  3398. "require-dev": {
  3399. "orchestra/testbench": "3.7.*",
  3400. "phpunit/phpunit": "^7"
  3401. },
  3402. "type": "laravel-package",
  3403. "extra": {
  3404. "laravel": {
  3405. "providers": [
  3406. "Rap2hpoutre\\LaravelLogViewer\\LaravelLogViewerServiceProvider"
  3407. ]
  3408. }
  3409. },
  3410. "autoload": {
  3411. "classmap": [
  3412. "src/controllers"
  3413. ],
  3414. "psr-0": {
  3415. "Rap2hpoutre\\LaravelLogViewer\\": "src/"
  3416. }
  3417. },
  3418. "notification-url": "https://packagist.org/downloads/",
  3419. "license": [
  3420. "MIT"
  3421. ],
  3422. "authors": [
  3423. {
  3424. "name": "rap2hpoutre",
  3425. "email": "raphaelht@gmail.com"
  3426. }
  3427. ],
  3428. "description": "A Laravel log reader",
  3429. "keywords": [
  3430. "laravel",
  3431. "log",
  3432. "log-reader",
  3433. "log-viewer",
  3434. "logging",
  3435. "lumen"
  3436. ],
  3437. "time": "2020-07-31T04:58:48+00:00"
  3438. },
  3439. {
  3440. "name": "riverslei/payment",
  3441. "version": "v5.1.0",
  3442. "source": {
  3443. "type": "git",
  3444. "url": "https://github.com/helei112g/payment.git",
  3445. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa"
  3446. },
  3447. "dist": {
  3448. "type": "zip",
  3449. "url": "https://api.github.com/repos/helei112g/payment/zipball/77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  3450. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  3451. "shasum": ""
  3452. },
  3453. "require": {
  3454. "ext-bcmath": "*",
  3455. "ext-json": "*",
  3456. "ext-mbstring": "*",
  3457. "ext-openssl": "*",
  3458. "ext-simplexml": "*",
  3459. "ext-xml": "*",
  3460. "guzzlehttp/guzzle": "~6.0",
  3461. "php": ">=7.0"
  3462. },
  3463. "require-dev": {
  3464. "codeception/codeception": "*"
  3465. },
  3466. "type": "library",
  3467. "autoload": {
  3468. "psr-4": {
  3469. "Payment\\": "src/"
  3470. }
  3471. },
  3472. "notification-url": "https://packagist.org/downloads/",
  3473. "license": [
  3474. "MIT"
  3475. ],
  3476. "authors": [
  3477. {
  3478. "name": "Leo",
  3479. "email": "dayugog@gmail.com",
  3480. "homepage": "https://dayutalk.cn"
  3481. }
  3482. ],
  3483. "description": "支付宝支付、微信支付、招商一网通支付php SDK。方便快速接入,最完整的开源支付 php sdk",
  3484. "homepage": "http://helei112g.github.io/payment",
  3485. "keywords": [
  3486. "alipay",
  3487. "weixin",
  3488. "一网通",
  3489. "微信支付",
  3490. "招商一网通",
  3491. "支付宝支付",
  3492. "集成支付接口SDK"
  3493. ],
  3494. "time": "2020-05-04T03:07:17+00:00"
  3495. },
  3496. {
  3497. "name": "simplesoftwareio/simple-qrcode",
  3498. "version": "3.0.0",
  3499. "source": {
  3500. "type": "git",
  3501. "url": "https://github.com/SimpleSoftwareIO/simple-qrcode.git",
  3502. "reference": "151dd397426d9a6c0507c96e61ddd2ca1290ce1e"
  3503. },
  3504. "dist": {
  3505. "type": "zip",
  3506. "url": "https://api.github.com/repos/SimpleSoftwareIO/simple-qrcode/zipball/151dd397426d9a6c0507c96e61ddd2ca1290ce1e",
  3507. "reference": "151dd397426d9a6c0507c96e61ddd2ca1290ce1e",
  3508. "shasum": ""
  3509. },
  3510. "require": {
  3511. "bacon/bacon-qr-code": "2.0.0",
  3512. "ext-gd": "*",
  3513. "php": ">=7.2"
  3514. },
  3515. "require-dev": {
  3516. "mockery/mockery": "~1",
  3517. "phpunit/phpunit": "~9"
  3518. },
  3519. "suggest": {
  3520. "ext-imagick": "Allows the generation of PNG QrCodes.",
  3521. "illuminate/support": "Allows for use within Laravel."
  3522. },
  3523. "type": "library",
  3524. "extra": {
  3525. "laravel": {
  3526. "providers": [
  3527. "SimpleSoftwareIO\\QrCode\\ServiceProvider"
  3528. ],
  3529. "aliases": {
  3530. "QrCode": "SimpleSoftwareIO\\QrCode\\Facade"
  3531. }
  3532. }
  3533. },
  3534. "autoload": {
  3535. "psr-4": {
  3536. "SimpleSoftwareIO\\QrCode\\": "src"
  3537. }
  3538. },
  3539. "notification-url": "https://packagist.org/downloads/",
  3540. "license": [
  3541. "MIT"
  3542. ],
  3543. "authors": [
  3544. {
  3545. "name": "Simple Software LLC",
  3546. "email": "support@simplesoftware.io"
  3547. }
  3548. ],
  3549. "description": "Simple QrCode is a QR code generator made for Laravel.",
  3550. "homepage": "http://www.simplesoftware.io",
  3551. "keywords": [
  3552. "Simple",
  3553. "generator",
  3554. "laravel",
  3555. "qrcode",
  3556. "wrapper"
  3557. ],
  3558. "time": "2020-06-02T20:41:21+00:00"
  3559. },
  3560. {
  3561. "name": "spatie/laravel-permission",
  3562. "version": "3.16.0",
  3563. "source": {
  3564. "type": "git",
  3565. "url": "https://github.com/spatie/laravel-permission.git",
  3566. "reference": "c5082ee84e0d128896b4a6864a8502d8c5f1df08"
  3567. },
  3568. "dist": {
  3569. "type": "zip",
  3570. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/c5082ee84e0d128896b4a6864a8502d8c5f1df08",
  3571. "reference": "c5082ee84e0d128896b4a6864a8502d8c5f1df08",
  3572. "shasum": ""
  3573. },
  3574. "require": {
  3575. "illuminate/auth": "^5.8|^6.0|^7.0|^8.0",
  3576. "illuminate/container": "^5.8|^6.0|^7.0|^8.0",
  3577. "illuminate/contracts": "^5.8|^6.0|^7.0|^8.0",
  3578. "illuminate/database": "^5.8|^6.0|^7.0|^8.0",
  3579. "php": "^7.2.5"
  3580. },
  3581. "require-dev": {
  3582. "orchestra/testbench": "^3.8|^4.0|^5.0|^6.0",
  3583. "phpunit/phpunit": "^8.0|^9.0",
  3584. "predis/predis": "^1.1"
  3585. },
  3586. "type": "library",
  3587. "extra": {
  3588. "laravel": {
  3589. "providers": [
  3590. "Spatie\\Permission\\PermissionServiceProvider"
  3591. ]
  3592. }
  3593. },
  3594. "autoload": {
  3595. "psr-4": {
  3596. "Spatie\\Permission\\": "src"
  3597. },
  3598. "files": [
  3599. "src/helpers.php"
  3600. ]
  3601. },
  3602. "notification-url": "https://packagist.org/downloads/",
  3603. "license": [
  3604. "MIT"
  3605. ],
  3606. "authors": [
  3607. {
  3608. "name": "Freek Van der Herten",
  3609. "email": "freek@spatie.be",
  3610. "homepage": "https://spatie.be",
  3611. "role": "Developer"
  3612. }
  3613. ],
  3614. "description": "Permission handling for Laravel 5.8 and up",
  3615. "homepage": "https://github.com/spatie/laravel-permission",
  3616. "keywords": [
  3617. "acl",
  3618. "laravel",
  3619. "permission",
  3620. "permissions",
  3621. "rbac",
  3622. "roles",
  3623. "security",
  3624. "spatie"
  3625. ],
  3626. "funding": [
  3627. {
  3628. "url": "https://spatie.be/open-source/support-us",
  3629. "type": "custom"
  3630. }
  3631. ],
  3632. "time": "2020-08-18T17:14:06+00:00"
  3633. },
  3634. {
  3635. "name": "srmklive/paypal",
  3636. "version": "1.8.0",
  3637. "source": {
  3638. "type": "git",
  3639. "url": "https://github.com/srmklive/laravel-paypal.git",
  3640. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb"
  3641. },
  3642. "dist": {
  3643. "type": "zip",
  3644. "url": "https://api.github.com/repos/srmklive/laravel-paypal/zipball/0c2ae237577f62396d474674cb40f82825a41ffb",
  3645. "reference": "0c2ae237577f62396d474674cb40f82825a41ffb",
  3646. "shasum": ""
  3647. },
  3648. "require": {
  3649. "guzzlehttp/guzzle": "~6.0|~7.0",
  3650. "illuminate/support": "~5.1|~5.2|~5.3|~5.4|~5.5|~5.6|~5.7|~5.8|~6.0|~7.0|~8.0",
  3651. "nesbot/carbon": "~1.0|~2.0"
  3652. },
  3653. "type": "library",
  3654. "extra": {
  3655. "laravel": {
  3656. "providers": [
  3657. "Srmklive\\PayPal\\Providers\\PayPalServiceProvider"
  3658. ],
  3659. "aliases": {
  3660. "PayPal": "Srmklive\\PayPal\\Facades\\PayPal"
  3661. }
  3662. }
  3663. },
  3664. "autoload": {
  3665. "psr-4": {
  3666. "Srmklive\\PayPal\\": "src/"
  3667. }
  3668. },
  3669. "notification-url": "https://packagist.org/downloads/",
  3670. "license": [
  3671. "MIT"
  3672. ],
  3673. "authors": [
  3674. {
  3675. "name": "Raza Mehdi",
  3676. "email": "srmk@outlook.com"
  3677. }
  3678. ],
  3679. "description": "Laravel plugin For Processing Payments Through Paypal Express Checkout. Can Be Used Independently With Other Applications.",
  3680. "keywords": [
  3681. "http",
  3682. "laravel paypal",
  3683. "paypal",
  3684. "rest",
  3685. "web service"
  3686. ],
  3687. "time": "2020-09-03T07:50:08+00:00"
  3688. },
  3689. {
  3690. "name": "swiftmailer/swiftmailer",
  3691. "version": "v6.2.3",
  3692. "source": {
  3693. "type": "git",
  3694. "url": "https://github.com/swiftmailer/swiftmailer.git",
  3695. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9"
  3696. },
  3697. "dist": {
  3698. "type": "zip",
  3699. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  3700. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  3701. "shasum": ""
  3702. },
  3703. "require": {
  3704. "egulias/email-validator": "~2.0",
  3705. "php": ">=7.0.0",
  3706. "symfony/polyfill-iconv": "^1.0",
  3707. "symfony/polyfill-intl-idn": "^1.10",
  3708. "symfony/polyfill-mbstring": "^1.0"
  3709. },
  3710. "require-dev": {
  3711. "mockery/mockery": "~0.9.1",
  3712. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  3713. },
  3714. "suggest": {
  3715. "ext-intl": "Needed to support internationalized email addresses",
  3716. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  3717. },
  3718. "type": "library",
  3719. "extra": {
  3720. "branch-alias": {
  3721. "dev-master": "6.2-dev"
  3722. }
  3723. },
  3724. "autoload": {
  3725. "files": [
  3726. "lib/swift_required.php"
  3727. ]
  3728. },
  3729. "notification-url": "https://packagist.org/downloads/",
  3730. "license": [
  3731. "MIT"
  3732. ],
  3733. "authors": [
  3734. {
  3735. "name": "Chris Corbyn"
  3736. },
  3737. {
  3738. "name": "Fabien Potencier",
  3739. "email": "fabien@symfony.com"
  3740. }
  3741. ],
  3742. "description": "Swiftmailer, free feature-rich PHP mailer",
  3743. "homepage": "https://swiftmailer.symfony.com",
  3744. "keywords": [
  3745. "email",
  3746. "mail",
  3747. "mailer"
  3748. ],
  3749. "time": "2019-11-12T09:31:26+00:00"
  3750. },
  3751. {
  3752. "name": "symfony/console",
  3753. "version": "v5.1.5",
  3754. "source": {
  3755. "type": "git",
  3756. "url": "https://github.com/symfony/console.git",
  3757. "reference": "186f395b256065ba9b890c0a4e48a91d598fa2cf"
  3758. },
  3759. "dist": {
  3760. "type": "zip",
  3761. "url": "https://api.github.com/repos/symfony/console/zipball/186f395b256065ba9b890c0a4e48a91d598fa2cf",
  3762. "reference": "186f395b256065ba9b890c0a4e48a91d598fa2cf",
  3763. "shasum": ""
  3764. },
  3765. "require": {
  3766. "php": ">=7.2.5",
  3767. "symfony/polyfill-mbstring": "~1.0",
  3768. "symfony/polyfill-php73": "^1.8",
  3769. "symfony/polyfill-php80": "^1.15",
  3770. "symfony/service-contracts": "^1.1|^2",
  3771. "symfony/string": "^5.1"
  3772. },
  3773. "conflict": {
  3774. "symfony/dependency-injection": "<4.4",
  3775. "symfony/dotenv": "<5.1",
  3776. "symfony/event-dispatcher": "<4.4",
  3777. "symfony/lock": "<4.4",
  3778. "symfony/process": "<4.4"
  3779. },
  3780. "provide": {
  3781. "psr/log-implementation": "1.0"
  3782. },
  3783. "require-dev": {
  3784. "psr/log": "~1.0",
  3785. "symfony/config": "^4.4|^5.0",
  3786. "symfony/dependency-injection": "^4.4|^5.0",
  3787. "symfony/event-dispatcher": "^4.4|^5.0",
  3788. "symfony/lock": "^4.4|^5.0",
  3789. "symfony/process": "^4.4|^5.0",
  3790. "symfony/var-dumper": "^4.4|^5.0"
  3791. },
  3792. "suggest": {
  3793. "psr/log": "For using the console logger",
  3794. "symfony/event-dispatcher": "",
  3795. "symfony/lock": "",
  3796. "symfony/process": ""
  3797. },
  3798. "type": "library",
  3799. "extra": {
  3800. "branch-alias": {
  3801. "dev-master": "5.1-dev"
  3802. }
  3803. },
  3804. "autoload": {
  3805. "psr-4": {
  3806. "Symfony\\Component\\Console\\": ""
  3807. },
  3808. "exclude-from-classmap": [
  3809. "/Tests/"
  3810. ]
  3811. },
  3812. "notification-url": "https://packagist.org/downloads/",
  3813. "license": [
  3814. "MIT"
  3815. ],
  3816. "authors": [
  3817. {
  3818. "name": "Fabien Potencier",
  3819. "email": "fabien@symfony.com"
  3820. },
  3821. {
  3822. "name": "Symfony Community",
  3823. "homepage": "https://symfony.com/contributors"
  3824. }
  3825. ],
  3826. "description": "Symfony Console Component",
  3827. "homepage": "https://symfony.com",
  3828. "funding": [
  3829. {
  3830. "url": "https://symfony.com/sponsor",
  3831. "type": "custom"
  3832. },
  3833. {
  3834. "url": "https://github.com/fabpot",
  3835. "type": "github"
  3836. },
  3837. {
  3838. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3839. "type": "tidelift"
  3840. }
  3841. ],
  3842. "time": "2020-09-02T07:07:40+00:00"
  3843. },
  3844. {
  3845. "name": "symfony/css-selector",
  3846. "version": "v5.1.5",
  3847. "source": {
  3848. "type": "git",
  3849. "url": "https://github.com/symfony/css-selector.git",
  3850. "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9"
  3851. },
  3852. "dist": {
  3853. "type": "zip",
  3854. "url": "https://api.github.com/repos/symfony/css-selector/zipball/e544e24472d4c97b2d11ade7caacd446727c6bf9",
  3855. "reference": "e544e24472d4c97b2d11ade7caacd446727c6bf9",
  3856. "shasum": ""
  3857. },
  3858. "require": {
  3859. "php": ">=7.2.5"
  3860. },
  3861. "type": "library",
  3862. "extra": {
  3863. "branch-alias": {
  3864. "dev-master": "5.1-dev"
  3865. }
  3866. },
  3867. "autoload": {
  3868. "psr-4": {
  3869. "Symfony\\Component\\CssSelector\\": ""
  3870. },
  3871. "exclude-from-classmap": [
  3872. "/Tests/"
  3873. ]
  3874. },
  3875. "notification-url": "https://packagist.org/downloads/",
  3876. "license": [
  3877. "MIT"
  3878. ],
  3879. "authors": [
  3880. {
  3881. "name": "Fabien Potencier",
  3882. "email": "fabien@symfony.com"
  3883. },
  3884. {
  3885. "name": "Jean-François Simon",
  3886. "email": "jeanfrancois.simon@sensiolabs.com"
  3887. },
  3888. {
  3889. "name": "Symfony Community",
  3890. "homepage": "https://symfony.com/contributors"
  3891. }
  3892. ],
  3893. "description": "Symfony CssSelector Component",
  3894. "homepage": "https://symfony.com",
  3895. "funding": [
  3896. {
  3897. "url": "https://symfony.com/sponsor",
  3898. "type": "custom"
  3899. },
  3900. {
  3901. "url": "https://github.com/fabpot",
  3902. "type": "github"
  3903. },
  3904. {
  3905. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3906. "type": "tidelift"
  3907. }
  3908. ],
  3909. "time": "2020-05-20T17:43:50+00:00"
  3910. },
  3911. {
  3912. "name": "symfony/deprecation-contracts",
  3913. "version": "v2.1.3",
  3914. "source": {
  3915. "type": "git",
  3916. "url": "https://github.com/symfony/deprecation-contracts.git",
  3917. "reference": "5e20b83385a77593259c9f8beb2c43cd03b2ac14"
  3918. },
  3919. "dist": {
  3920. "type": "zip",
  3921. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5e20b83385a77593259c9f8beb2c43cd03b2ac14",
  3922. "reference": "5e20b83385a77593259c9f8beb2c43cd03b2ac14",
  3923. "shasum": ""
  3924. },
  3925. "require": {
  3926. "php": ">=7.1"
  3927. },
  3928. "type": "library",
  3929. "extra": {
  3930. "branch-alias": {
  3931. "dev-master": "2.1-dev"
  3932. },
  3933. "thanks": {
  3934. "name": "symfony/contracts",
  3935. "url": "https://github.com/symfony/contracts"
  3936. }
  3937. },
  3938. "autoload": {
  3939. "files": [
  3940. "function.php"
  3941. ]
  3942. },
  3943. "notification-url": "https://packagist.org/downloads/",
  3944. "license": [
  3945. "MIT"
  3946. ],
  3947. "authors": [
  3948. {
  3949. "name": "Nicolas Grekas",
  3950. "email": "p@tchwork.com"
  3951. },
  3952. {
  3953. "name": "Symfony Community",
  3954. "homepage": "https://symfony.com/contributors"
  3955. }
  3956. ],
  3957. "description": "A generic function and convention to trigger deprecation notices",
  3958. "homepage": "https://symfony.com",
  3959. "funding": [
  3960. {
  3961. "url": "https://symfony.com/sponsor",
  3962. "type": "custom"
  3963. },
  3964. {
  3965. "url": "https://github.com/fabpot",
  3966. "type": "github"
  3967. },
  3968. {
  3969. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3970. "type": "tidelift"
  3971. }
  3972. ],
  3973. "time": "2020-06-06T08:49:21+00:00"
  3974. },
  3975. {
  3976. "name": "symfony/error-handler",
  3977. "version": "v5.1.5",
  3978. "source": {
  3979. "type": "git",
  3980. "url": "https://github.com/symfony/error-handler.git",
  3981. "reference": "525636d4b84e06c6ca72d96b6856b5b169416e6a"
  3982. },
  3983. "dist": {
  3984. "type": "zip",
  3985. "url": "https://api.github.com/repos/symfony/error-handler/zipball/525636d4b84e06c6ca72d96b6856b5b169416e6a",
  3986. "reference": "525636d4b84e06c6ca72d96b6856b5b169416e6a",
  3987. "shasum": ""
  3988. },
  3989. "require": {
  3990. "php": ">=7.2.5",
  3991. "psr/log": "^1.0",
  3992. "symfony/polyfill-php80": "^1.15",
  3993. "symfony/var-dumper": "^4.4|^5.0"
  3994. },
  3995. "require-dev": {
  3996. "symfony/deprecation-contracts": "^2.1",
  3997. "symfony/http-kernel": "^4.4|^5.0",
  3998. "symfony/serializer": "^4.4|^5.0"
  3999. },
  4000. "type": "library",
  4001. "extra": {
  4002. "branch-alias": {
  4003. "dev-master": "5.1-dev"
  4004. }
  4005. },
  4006. "autoload": {
  4007. "psr-4": {
  4008. "Symfony\\Component\\ErrorHandler\\": ""
  4009. },
  4010. "exclude-from-classmap": [
  4011. "/Tests/"
  4012. ]
  4013. },
  4014. "notification-url": "https://packagist.org/downloads/",
  4015. "license": [
  4016. "MIT"
  4017. ],
  4018. "authors": [
  4019. {
  4020. "name": "Fabien Potencier",
  4021. "email": "fabien@symfony.com"
  4022. },
  4023. {
  4024. "name": "Symfony Community",
  4025. "homepage": "https://symfony.com/contributors"
  4026. }
  4027. ],
  4028. "description": "Symfony ErrorHandler Component",
  4029. "homepage": "https://symfony.com",
  4030. "funding": [
  4031. {
  4032. "url": "https://symfony.com/sponsor",
  4033. "type": "custom"
  4034. },
  4035. {
  4036. "url": "https://github.com/fabpot",
  4037. "type": "github"
  4038. },
  4039. {
  4040. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4041. "type": "tidelift"
  4042. }
  4043. ],
  4044. "time": "2020-08-17T10:01:29+00:00"
  4045. },
  4046. {
  4047. "name": "symfony/event-dispatcher",
  4048. "version": "v5.1.5",
  4049. "source": {
  4050. "type": "git",
  4051. "url": "https://github.com/symfony/event-dispatcher.git",
  4052. "reference": "94871fc0a69c3c5da57764187724cdce0755899c"
  4053. },
  4054. "dist": {
  4055. "type": "zip",
  4056. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/94871fc0a69c3c5da57764187724cdce0755899c",
  4057. "reference": "94871fc0a69c3c5da57764187724cdce0755899c",
  4058. "shasum": ""
  4059. },
  4060. "require": {
  4061. "php": ">=7.2.5",
  4062. "symfony/deprecation-contracts": "^2.1",
  4063. "symfony/event-dispatcher-contracts": "^2",
  4064. "symfony/polyfill-php80": "^1.15"
  4065. },
  4066. "conflict": {
  4067. "symfony/dependency-injection": "<4.4"
  4068. },
  4069. "provide": {
  4070. "psr/event-dispatcher-implementation": "1.0",
  4071. "symfony/event-dispatcher-implementation": "2.0"
  4072. },
  4073. "require-dev": {
  4074. "psr/log": "~1.0",
  4075. "symfony/config": "^4.4|^5.0",
  4076. "symfony/dependency-injection": "^4.4|^5.0",
  4077. "symfony/expression-language": "^4.4|^5.0",
  4078. "symfony/http-foundation": "^4.4|^5.0",
  4079. "symfony/service-contracts": "^1.1|^2",
  4080. "symfony/stopwatch": "^4.4|^5.0"
  4081. },
  4082. "suggest": {
  4083. "symfony/dependency-injection": "",
  4084. "symfony/http-kernel": ""
  4085. },
  4086. "type": "library",
  4087. "extra": {
  4088. "branch-alias": {
  4089. "dev-master": "5.1-dev"
  4090. }
  4091. },
  4092. "autoload": {
  4093. "psr-4": {
  4094. "Symfony\\Component\\EventDispatcher\\": ""
  4095. },
  4096. "exclude-from-classmap": [
  4097. "/Tests/"
  4098. ]
  4099. },
  4100. "notification-url": "https://packagist.org/downloads/",
  4101. "license": [
  4102. "MIT"
  4103. ],
  4104. "authors": [
  4105. {
  4106. "name": "Fabien Potencier",
  4107. "email": "fabien@symfony.com"
  4108. },
  4109. {
  4110. "name": "Symfony Community",
  4111. "homepage": "https://symfony.com/contributors"
  4112. }
  4113. ],
  4114. "description": "Symfony EventDispatcher Component",
  4115. "homepage": "https://symfony.com",
  4116. "funding": [
  4117. {
  4118. "url": "https://symfony.com/sponsor",
  4119. "type": "custom"
  4120. },
  4121. {
  4122. "url": "https://github.com/fabpot",
  4123. "type": "github"
  4124. },
  4125. {
  4126. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4127. "type": "tidelift"
  4128. }
  4129. ],
  4130. "time": "2020-08-13T14:19:42+00:00"
  4131. },
  4132. {
  4133. "name": "symfony/event-dispatcher-contracts",
  4134. "version": "v2.1.3",
  4135. "source": {
  4136. "type": "git",
  4137. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4138. "reference": "f6f613d74cfc5a623fc36294d3451eb7fa5a042b"
  4139. },
  4140. "dist": {
  4141. "type": "zip",
  4142. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f6f613d74cfc5a623fc36294d3451eb7fa5a042b",
  4143. "reference": "f6f613d74cfc5a623fc36294d3451eb7fa5a042b",
  4144. "shasum": ""
  4145. },
  4146. "require": {
  4147. "php": ">=7.2.5",
  4148. "psr/event-dispatcher": "^1"
  4149. },
  4150. "suggest": {
  4151. "symfony/event-dispatcher-implementation": ""
  4152. },
  4153. "type": "library",
  4154. "extra": {
  4155. "branch-alias": {
  4156. "dev-master": "2.1-dev"
  4157. },
  4158. "thanks": {
  4159. "name": "symfony/contracts",
  4160. "url": "https://github.com/symfony/contracts"
  4161. }
  4162. },
  4163. "autoload": {
  4164. "psr-4": {
  4165. "Symfony\\Contracts\\EventDispatcher\\": ""
  4166. }
  4167. },
  4168. "notification-url": "https://packagist.org/downloads/",
  4169. "license": [
  4170. "MIT"
  4171. ],
  4172. "authors": [
  4173. {
  4174. "name": "Nicolas Grekas",
  4175. "email": "p@tchwork.com"
  4176. },
  4177. {
  4178. "name": "Symfony Community",
  4179. "homepage": "https://symfony.com/contributors"
  4180. }
  4181. ],
  4182. "description": "Generic abstractions related to dispatching event",
  4183. "homepage": "https://symfony.com",
  4184. "keywords": [
  4185. "abstractions",
  4186. "contracts",
  4187. "decoupling",
  4188. "interfaces",
  4189. "interoperability",
  4190. "standards"
  4191. ],
  4192. "funding": [
  4193. {
  4194. "url": "https://symfony.com/sponsor",
  4195. "type": "custom"
  4196. },
  4197. {
  4198. "url": "https://github.com/fabpot",
  4199. "type": "github"
  4200. },
  4201. {
  4202. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4203. "type": "tidelift"
  4204. }
  4205. ],
  4206. "time": "2020-07-06T13:23:11+00:00"
  4207. },
  4208. {
  4209. "name": "symfony/finder",
  4210. "version": "v5.1.5",
  4211. "source": {
  4212. "type": "git",
  4213. "url": "https://github.com/symfony/finder.git",
  4214. "reference": "2b765f0cf6612b3636e738c0689b29aa63088d5d"
  4215. },
  4216. "dist": {
  4217. "type": "zip",
  4218. "url": "https://api.github.com/repos/symfony/finder/zipball/2b765f0cf6612b3636e738c0689b29aa63088d5d",
  4219. "reference": "2b765f0cf6612b3636e738c0689b29aa63088d5d",
  4220. "shasum": ""
  4221. },
  4222. "require": {
  4223. "php": ">=7.2.5"
  4224. },
  4225. "type": "library",
  4226. "extra": {
  4227. "branch-alias": {
  4228. "dev-master": "5.1-dev"
  4229. }
  4230. },
  4231. "autoload": {
  4232. "psr-4": {
  4233. "Symfony\\Component\\Finder\\": ""
  4234. },
  4235. "exclude-from-classmap": [
  4236. "/Tests/"
  4237. ]
  4238. },
  4239. "notification-url": "https://packagist.org/downloads/",
  4240. "license": [
  4241. "MIT"
  4242. ],
  4243. "authors": [
  4244. {
  4245. "name": "Fabien Potencier",
  4246. "email": "fabien@symfony.com"
  4247. },
  4248. {
  4249. "name": "Symfony Community",
  4250. "homepage": "https://symfony.com/contributors"
  4251. }
  4252. ],
  4253. "description": "Symfony Finder Component",
  4254. "homepage": "https://symfony.com",
  4255. "funding": [
  4256. {
  4257. "url": "https://symfony.com/sponsor",
  4258. "type": "custom"
  4259. },
  4260. {
  4261. "url": "https://github.com/fabpot",
  4262. "type": "github"
  4263. },
  4264. {
  4265. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4266. "type": "tidelift"
  4267. }
  4268. ],
  4269. "time": "2020-08-17T10:01:29+00:00"
  4270. },
  4271. {
  4272. "name": "symfony/http-foundation",
  4273. "version": "v5.1.5",
  4274. "source": {
  4275. "type": "git",
  4276. "url": "https://github.com/symfony/http-foundation.git",
  4277. "reference": "41a4647f12870e9d41d9a7d72ff0614a27208558"
  4278. },
  4279. "dist": {
  4280. "type": "zip",
  4281. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/41a4647f12870e9d41d9a7d72ff0614a27208558",
  4282. "reference": "41a4647f12870e9d41d9a7d72ff0614a27208558",
  4283. "shasum": ""
  4284. },
  4285. "require": {
  4286. "php": ">=7.2.5",
  4287. "symfony/deprecation-contracts": "^2.1",
  4288. "symfony/polyfill-mbstring": "~1.1",
  4289. "symfony/polyfill-php80": "^1.15"
  4290. },
  4291. "require-dev": {
  4292. "predis/predis": "~1.0",
  4293. "symfony/cache": "^4.4|^5.0",
  4294. "symfony/expression-language": "^4.4|^5.0",
  4295. "symfony/mime": "^4.4|^5.0"
  4296. },
  4297. "suggest": {
  4298. "symfony/mime": "To use the file extension guesser"
  4299. },
  4300. "type": "library",
  4301. "extra": {
  4302. "branch-alias": {
  4303. "dev-master": "5.1-dev"
  4304. }
  4305. },
  4306. "autoload": {
  4307. "psr-4": {
  4308. "Symfony\\Component\\HttpFoundation\\": ""
  4309. },
  4310. "exclude-from-classmap": [
  4311. "/Tests/"
  4312. ]
  4313. },
  4314. "notification-url": "https://packagist.org/downloads/",
  4315. "license": [
  4316. "MIT"
  4317. ],
  4318. "authors": [
  4319. {
  4320. "name": "Fabien Potencier",
  4321. "email": "fabien@symfony.com"
  4322. },
  4323. {
  4324. "name": "Symfony Community",
  4325. "homepage": "https://symfony.com/contributors"
  4326. }
  4327. ],
  4328. "description": "Symfony HttpFoundation Component",
  4329. "homepage": "https://symfony.com",
  4330. "funding": [
  4331. {
  4332. "url": "https://symfony.com/sponsor",
  4333. "type": "custom"
  4334. },
  4335. {
  4336. "url": "https://github.com/fabpot",
  4337. "type": "github"
  4338. },
  4339. {
  4340. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4341. "type": "tidelift"
  4342. }
  4343. ],
  4344. "time": "2020-08-17T07:48:54+00:00"
  4345. },
  4346. {
  4347. "name": "symfony/http-kernel",
  4348. "version": "v5.1.5",
  4349. "source": {
  4350. "type": "git",
  4351. "url": "https://github.com/symfony/http-kernel.git",
  4352. "reference": "3e32676e6cb5d2081c91a56783471ff8a7f7110b"
  4353. },
  4354. "dist": {
  4355. "type": "zip",
  4356. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/3e32676e6cb5d2081c91a56783471ff8a7f7110b",
  4357. "reference": "3e32676e6cb5d2081c91a56783471ff8a7f7110b",
  4358. "shasum": ""
  4359. },
  4360. "require": {
  4361. "php": ">=7.2.5",
  4362. "psr/log": "~1.0",
  4363. "symfony/deprecation-contracts": "^2.1",
  4364. "symfony/error-handler": "^4.4|^5.0",
  4365. "symfony/event-dispatcher": "^5.0",
  4366. "symfony/http-foundation": "^4.4|^5.0",
  4367. "symfony/polyfill-ctype": "^1.8",
  4368. "symfony/polyfill-php73": "^1.9",
  4369. "symfony/polyfill-php80": "^1.15"
  4370. },
  4371. "conflict": {
  4372. "symfony/browser-kit": "<4.4",
  4373. "symfony/cache": "<5.0",
  4374. "symfony/config": "<5.0",
  4375. "symfony/console": "<4.4",
  4376. "symfony/dependency-injection": "<4.4",
  4377. "symfony/doctrine-bridge": "<5.0",
  4378. "symfony/form": "<5.0",
  4379. "symfony/http-client": "<5.0",
  4380. "symfony/mailer": "<5.0",
  4381. "symfony/messenger": "<5.0",
  4382. "symfony/translation": "<5.0",
  4383. "symfony/twig-bridge": "<5.0",
  4384. "symfony/validator": "<5.0",
  4385. "twig/twig": "<2.4"
  4386. },
  4387. "provide": {
  4388. "psr/log-implementation": "1.0"
  4389. },
  4390. "require-dev": {
  4391. "psr/cache": "~1.0",
  4392. "symfony/browser-kit": "^4.4|^5.0",
  4393. "symfony/config": "^5.0",
  4394. "symfony/console": "^4.4|^5.0",
  4395. "symfony/css-selector": "^4.4|^5.0",
  4396. "symfony/dependency-injection": "^4.4|^5.0",
  4397. "symfony/dom-crawler": "^4.4|^5.0",
  4398. "symfony/expression-language": "^4.4|^5.0",
  4399. "symfony/finder": "^4.4|^5.0",
  4400. "symfony/process": "^4.4|^5.0",
  4401. "symfony/routing": "^4.4|^5.0",
  4402. "symfony/stopwatch": "^4.4|^5.0",
  4403. "symfony/translation": "^4.4|^5.0",
  4404. "symfony/translation-contracts": "^1.1|^2",
  4405. "twig/twig": "^2.4|^3.0"
  4406. },
  4407. "suggest": {
  4408. "symfony/browser-kit": "",
  4409. "symfony/config": "",
  4410. "symfony/console": "",
  4411. "symfony/dependency-injection": ""
  4412. },
  4413. "type": "library",
  4414. "extra": {
  4415. "branch-alias": {
  4416. "dev-master": "5.1-dev"
  4417. }
  4418. },
  4419. "autoload": {
  4420. "psr-4": {
  4421. "Symfony\\Component\\HttpKernel\\": ""
  4422. },
  4423. "exclude-from-classmap": [
  4424. "/Tests/"
  4425. ]
  4426. },
  4427. "notification-url": "https://packagist.org/downloads/",
  4428. "license": [
  4429. "MIT"
  4430. ],
  4431. "authors": [
  4432. {
  4433. "name": "Fabien Potencier",
  4434. "email": "fabien@symfony.com"
  4435. },
  4436. {
  4437. "name": "Symfony Community",
  4438. "homepage": "https://symfony.com/contributors"
  4439. }
  4440. ],
  4441. "description": "Symfony HttpKernel Component",
  4442. "homepage": "https://symfony.com",
  4443. "funding": [
  4444. {
  4445. "url": "https://symfony.com/sponsor",
  4446. "type": "custom"
  4447. },
  4448. {
  4449. "url": "https://github.com/fabpot",
  4450. "type": "github"
  4451. },
  4452. {
  4453. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4454. "type": "tidelift"
  4455. }
  4456. ],
  4457. "time": "2020-09-02T08:15:18+00:00"
  4458. },
  4459. {
  4460. "name": "symfony/mime",
  4461. "version": "v5.1.5",
  4462. "source": {
  4463. "type": "git",
  4464. "url": "https://github.com/symfony/mime.git",
  4465. "reference": "89a2c9b4cb7b5aa516cf55f5194c384f444c81dc"
  4466. },
  4467. "dist": {
  4468. "type": "zip",
  4469. "url": "https://api.github.com/repos/symfony/mime/zipball/89a2c9b4cb7b5aa516cf55f5194c384f444c81dc",
  4470. "reference": "89a2c9b4cb7b5aa516cf55f5194c384f444c81dc",
  4471. "shasum": ""
  4472. },
  4473. "require": {
  4474. "php": ">=7.2.5",
  4475. "symfony/polyfill-intl-idn": "^1.10",
  4476. "symfony/polyfill-mbstring": "^1.0",
  4477. "symfony/polyfill-php80": "^1.15"
  4478. },
  4479. "conflict": {
  4480. "symfony/mailer": "<4.4"
  4481. },
  4482. "require-dev": {
  4483. "egulias/email-validator": "^2.1.10",
  4484. "symfony/dependency-injection": "^4.4|^5.0"
  4485. },
  4486. "type": "library",
  4487. "extra": {
  4488. "branch-alias": {
  4489. "dev-master": "5.1-dev"
  4490. }
  4491. },
  4492. "autoload": {
  4493. "psr-4": {
  4494. "Symfony\\Component\\Mime\\": ""
  4495. },
  4496. "exclude-from-classmap": [
  4497. "/Tests/"
  4498. ]
  4499. },
  4500. "notification-url": "https://packagist.org/downloads/",
  4501. "license": [
  4502. "MIT"
  4503. ],
  4504. "authors": [
  4505. {
  4506. "name": "Fabien Potencier",
  4507. "email": "fabien@symfony.com"
  4508. },
  4509. {
  4510. "name": "Symfony Community",
  4511. "homepage": "https://symfony.com/contributors"
  4512. }
  4513. ],
  4514. "description": "A library to manipulate MIME messages",
  4515. "homepage": "https://symfony.com",
  4516. "keywords": [
  4517. "mime",
  4518. "mime-type"
  4519. ],
  4520. "funding": [
  4521. {
  4522. "url": "https://symfony.com/sponsor",
  4523. "type": "custom"
  4524. },
  4525. {
  4526. "url": "https://github.com/fabpot",
  4527. "type": "github"
  4528. },
  4529. {
  4530. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4531. "type": "tidelift"
  4532. }
  4533. ],
  4534. "time": "2020-08-17T10:01:29+00:00"
  4535. },
  4536. {
  4537. "name": "symfony/polyfill-ctype",
  4538. "version": "v1.18.1",
  4539. "source": {
  4540. "type": "git",
  4541. "url": "https://github.com/symfony/polyfill-ctype.git",
  4542. "reference": "1c302646f6efc070cd46856e600e5e0684d6b454"
  4543. },
  4544. "dist": {
  4545. "type": "zip",
  4546. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/1c302646f6efc070cd46856e600e5e0684d6b454",
  4547. "reference": "1c302646f6efc070cd46856e600e5e0684d6b454",
  4548. "shasum": ""
  4549. },
  4550. "require": {
  4551. "php": ">=5.3.3"
  4552. },
  4553. "suggest": {
  4554. "ext-ctype": "For best performance"
  4555. },
  4556. "type": "library",
  4557. "extra": {
  4558. "branch-alias": {
  4559. "dev-master": "1.18-dev"
  4560. },
  4561. "thanks": {
  4562. "name": "symfony/polyfill",
  4563. "url": "https://github.com/symfony/polyfill"
  4564. }
  4565. },
  4566. "autoload": {
  4567. "psr-4": {
  4568. "Symfony\\Polyfill\\Ctype\\": ""
  4569. },
  4570. "files": [
  4571. "bootstrap.php"
  4572. ]
  4573. },
  4574. "notification-url": "https://packagist.org/downloads/",
  4575. "license": [
  4576. "MIT"
  4577. ],
  4578. "authors": [
  4579. {
  4580. "name": "Gert de Pagter",
  4581. "email": "BackEndTea@gmail.com"
  4582. },
  4583. {
  4584. "name": "Symfony Community",
  4585. "homepage": "https://symfony.com/contributors"
  4586. }
  4587. ],
  4588. "description": "Symfony polyfill for ctype functions",
  4589. "homepage": "https://symfony.com",
  4590. "keywords": [
  4591. "compatibility",
  4592. "ctype",
  4593. "polyfill",
  4594. "portable"
  4595. ],
  4596. "funding": [
  4597. {
  4598. "url": "https://symfony.com/sponsor",
  4599. "type": "custom"
  4600. },
  4601. {
  4602. "url": "https://github.com/fabpot",
  4603. "type": "github"
  4604. },
  4605. {
  4606. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4607. "type": "tidelift"
  4608. }
  4609. ],
  4610. "time": "2020-07-14T12:35:20+00:00"
  4611. },
  4612. {
  4613. "name": "symfony/polyfill-iconv",
  4614. "version": "v1.18.1",
  4615. "source": {
  4616. "type": "git",
  4617. "url": "https://github.com/symfony/polyfill-iconv.git",
  4618. "reference": "6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36"
  4619. },
  4620. "dist": {
  4621. "type": "zip",
  4622. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36",
  4623. "reference": "6c2f78eb8f5ab8eaea98f6d414a5915f2e0fce36",
  4624. "shasum": ""
  4625. },
  4626. "require": {
  4627. "php": ">=5.3.3"
  4628. },
  4629. "suggest": {
  4630. "ext-iconv": "For best performance"
  4631. },
  4632. "type": "library",
  4633. "extra": {
  4634. "branch-alias": {
  4635. "dev-master": "1.18-dev"
  4636. },
  4637. "thanks": {
  4638. "name": "symfony/polyfill",
  4639. "url": "https://github.com/symfony/polyfill"
  4640. }
  4641. },
  4642. "autoload": {
  4643. "psr-4": {
  4644. "Symfony\\Polyfill\\Iconv\\": ""
  4645. },
  4646. "files": [
  4647. "bootstrap.php"
  4648. ]
  4649. },
  4650. "notification-url": "https://packagist.org/downloads/",
  4651. "license": [
  4652. "MIT"
  4653. ],
  4654. "authors": [
  4655. {
  4656. "name": "Nicolas Grekas",
  4657. "email": "p@tchwork.com"
  4658. },
  4659. {
  4660. "name": "Symfony Community",
  4661. "homepage": "https://symfony.com/contributors"
  4662. }
  4663. ],
  4664. "description": "Symfony polyfill for the Iconv extension",
  4665. "homepage": "https://symfony.com",
  4666. "keywords": [
  4667. "compatibility",
  4668. "iconv",
  4669. "polyfill",
  4670. "portable",
  4671. "shim"
  4672. ],
  4673. "funding": [
  4674. {
  4675. "url": "https://symfony.com/sponsor",
  4676. "type": "custom"
  4677. },
  4678. {
  4679. "url": "https://github.com/fabpot",
  4680. "type": "github"
  4681. },
  4682. {
  4683. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4684. "type": "tidelift"
  4685. }
  4686. ],
  4687. "time": "2020-07-14T12:35:20+00:00"
  4688. },
  4689. {
  4690. "name": "symfony/polyfill-intl-grapheme",
  4691. "version": "v1.18.1",
  4692. "source": {
  4693. "type": "git",
  4694. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  4695. "reference": "b740103edbdcc39602239ee8860f0f45a8eb9aa5"
  4696. },
  4697. "dist": {
  4698. "type": "zip",
  4699. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b740103edbdcc39602239ee8860f0f45a8eb9aa5",
  4700. "reference": "b740103edbdcc39602239ee8860f0f45a8eb9aa5",
  4701. "shasum": ""
  4702. },
  4703. "require": {
  4704. "php": ">=5.3.3"
  4705. },
  4706. "suggest": {
  4707. "ext-intl": "For best performance"
  4708. },
  4709. "type": "library",
  4710. "extra": {
  4711. "branch-alias": {
  4712. "dev-master": "1.18-dev"
  4713. },
  4714. "thanks": {
  4715. "name": "symfony/polyfill",
  4716. "url": "https://github.com/symfony/polyfill"
  4717. }
  4718. },
  4719. "autoload": {
  4720. "psr-4": {
  4721. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  4722. },
  4723. "files": [
  4724. "bootstrap.php"
  4725. ]
  4726. },
  4727. "notification-url": "https://packagist.org/downloads/",
  4728. "license": [
  4729. "MIT"
  4730. ],
  4731. "authors": [
  4732. {
  4733. "name": "Nicolas Grekas",
  4734. "email": "p@tchwork.com"
  4735. },
  4736. {
  4737. "name": "Symfony Community",
  4738. "homepage": "https://symfony.com/contributors"
  4739. }
  4740. ],
  4741. "description": "Symfony polyfill for intl's grapheme_* functions",
  4742. "homepage": "https://symfony.com",
  4743. "keywords": [
  4744. "compatibility",
  4745. "grapheme",
  4746. "intl",
  4747. "polyfill",
  4748. "portable",
  4749. "shim"
  4750. ],
  4751. "funding": [
  4752. {
  4753. "url": "https://symfony.com/sponsor",
  4754. "type": "custom"
  4755. },
  4756. {
  4757. "url": "https://github.com/fabpot",
  4758. "type": "github"
  4759. },
  4760. {
  4761. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4762. "type": "tidelift"
  4763. }
  4764. ],
  4765. "time": "2020-07-14T12:35:20+00:00"
  4766. },
  4767. {
  4768. "name": "symfony/polyfill-intl-idn",
  4769. "version": "v1.18.1",
  4770. "source": {
  4771. "type": "git",
  4772. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  4773. "reference": "5dcab1bc7146cf8c1beaa4502a3d9be344334251"
  4774. },
  4775. "dist": {
  4776. "type": "zip",
  4777. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/5dcab1bc7146cf8c1beaa4502a3d9be344334251",
  4778. "reference": "5dcab1bc7146cf8c1beaa4502a3d9be344334251",
  4779. "shasum": ""
  4780. },
  4781. "require": {
  4782. "php": ">=5.3.3",
  4783. "symfony/polyfill-intl-normalizer": "^1.10",
  4784. "symfony/polyfill-php70": "^1.10",
  4785. "symfony/polyfill-php72": "^1.10"
  4786. },
  4787. "suggest": {
  4788. "ext-intl": "For best performance"
  4789. },
  4790. "type": "library",
  4791. "extra": {
  4792. "branch-alias": {
  4793. "dev-master": "1.18-dev"
  4794. },
  4795. "thanks": {
  4796. "name": "symfony/polyfill",
  4797. "url": "https://github.com/symfony/polyfill"
  4798. }
  4799. },
  4800. "autoload": {
  4801. "psr-4": {
  4802. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4803. },
  4804. "files": [
  4805. "bootstrap.php"
  4806. ]
  4807. },
  4808. "notification-url": "https://packagist.org/downloads/",
  4809. "license": [
  4810. "MIT"
  4811. ],
  4812. "authors": [
  4813. {
  4814. "name": "Laurent Bassin",
  4815. "email": "laurent@bassin.info"
  4816. },
  4817. {
  4818. "name": "Trevor Rowbotham",
  4819. "email": "trevor.rowbotham@pm.me"
  4820. },
  4821. {
  4822. "name": "Symfony Community",
  4823. "homepage": "https://symfony.com/contributors"
  4824. }
  4825. ],
  4826. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4827. "homepage": "https://symfony.com",
  4828. "keywords": [
  4829. "compatibility",
  4830. "idn",
  4831. "intl",
  4832. "polyfill",
  4833. "portable",
  4834. "shim"
  4835. ],
  4836. "funding": [
  4837. {
  4838. "url": "https://symfony.com/sponsor",
  4839. "type": "custom"
  4840. },
  4841. {
  4842. "url": "https://github.com/fabpot",
  4843. "type": "github"
  4844. },
  4845. {
  4846. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4847. "type": "tidelift"
  4848. }
  4849. ],
  4850. "time": "2020-08-04T06:02:08+00:00"
  4851. },
  4852. {
  4853. "name": "symfony/polyfill-intl-normalizer",
  4854. "version": "v1.18.1",
  4855. "source": {
  4856. "type": "git",
  4857. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  4858. "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e"
  4859. },
  4860. "dist": {
  4861. "type": "zip",
  4862. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e",
  4863. "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e",
  4864. "shasum": ""
  4865. },
  4866. "require": {
  4867. "php": ">=5.3.3"
  4868. },
  4869. "suggest": {
  4870. "ext-intl": "For best performance"
  4871. },
  4872. "type": "library",
  4873. "extra": {
  4874. "branch-alias": {
  4875. "dev-master": "1.18-dev"
  4876. },
  4877. "thanks": {
  4878. "name": "symfony/polyfill",
  4879. "url": "https://github.com/symfony/polyfill"
  4880. }
  4881. },
  4882. "autoload": {
  4883. "psr-4": {
  4884. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4885. },
  4886. "files": [
  4887. "bootstrap.php"
  4888. ],
  4889. "classmap": [
  4890. "Resources/stubs"
  4891. ]
  4892. },
  4893. "notification-url": "https://packagist.org/downloads/",
  4894. "license": [
  4895. "MIT"
  4896. ],
  4897. "authors": [
  4898. {
  4899. "name": "Nicolas Grekas",
  4900. "email": "p@tchwork.com"
  4901. },
  4902. {
  4903. "name": "Symfony Community",
  4904. "homepage": "https://symfony.com/contributors"
  4905. }
  4906. ],
  4907. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  4908. "homepage": "https://symfony.com",
  4909. "keywords": [
  4910. "compatibility",
  4911. "intl",
  4912. "normalizer",
  4913. "polyfill",
  4914. "portable",
  4915. "shim"
  4916. ],
  4917. "funding": [
  4918. {
  4919. "url": "https://symfony.com/sponsor",
  4920. "type": "custom"
  4921. },
  4922. {
  4923. "url": "https://github.com/fabpot",
  4924. "type": "github"
  4925. },
  4926. {
  4927. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4928. "type": "tidelift"
  4929. }
  4930. ],
  4931. "time": "2020-07-14T12:35:20+00:00"
  4932. },
  4933. {
  4934. "name": "symfony/polyfill-mbstring",
  4935. "version": "v1.18.1",
  4936. "source": {
  4937. "type": "git",
  4938. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4939. "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a"
  4940. },
  4941. "dist": {
  4942. "type": "zip",
  4943. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/a6977d63bf9a0ad4c65cd352709e230876f9904a",
  4944. "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a",
  4945. "shasum": ""
  4946. },
  4947. "require": {
  4948. "php": ">=5.3.3"
  4949. },
  4950. "suggest": {
  4951. "ext-mbstring": "For best performance"
  4952. },
  4953. "type": "library",
  4954. "extra": {
  4955. "branch-alias": {
  4956. "dev-master": "1.18-dev"
  4957. },
  4958. "thanks": {
  4959. "name": "symfony/polyfill",
  4960. "url": "https://github.com/symfony/polyfill"
  4961. }
  4962. },
  4963. "autoload": {
  4964. "psr-4": {
  4965. "Symfony\\Polyfill\\Mbstring\\": ""
  4966. },
  4967. "files": [
  4968. "bootstrap.php"
  4969. ]
  4970. },
  4971. "notification-url": "https://packagist.org/downloads/",
  4972. "license": [
  4973. "MIT"
  4974. ],
  4975. "authors": [
  4976. {
  4977. "name": "Nicolas Grekas",
  4978. "email": "p@tchwork.com"
  4979. },
  4980. {
  4981. "name": "Symfony Community",
  4982. "homepage": "https://symfony.com/contributors"
  4983. }
  4984. ],
  4985. "description": "Symfony polyfill for the Mbstring extension",
  4986. "homepage": "https://symfony.com",
  4987. "keywords": [
  4988. "compatibility",
  4989. "mbstring",
  4990. "polyfill",
  4991. "portable",
  4992. "shim"
  4993. ],
  4994. "funding": [
  4995. {
  4996. "url": "https://symfony.com/sponsor",
  4997. "type": "custom"
  4998. },
  4999. {
  5000. "url": "https://github.com/fabpot",
  5001. "type": "github"
  5002. },
  5003. {
  5004. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5005. "type": "tidelift"
  5006. }
  5007. ],
  5008. "time": "2020-07-14T12:35:20+00:00"
  5009. },
  5010. {
  5011. "name": "symfony/polyfill-php70",
  5012. "version": "v1.18.1",
  5013. "source": {
  5014. "type": "git",
  5015. "url": "https://github.com/symfony/polyfill-php70.git",
  5016. "reference": "0dd93f2c578bdc9c72697eaa5f1dd25644e618d3"
  5017. },
  5018. "dist": {
  5019. "type": "zip",
  5020. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/0dd93f2c578bdc9c72697eaa5f1dd25644e618d3",
  5021. "reference": "0dd93f2c578bdc9c72697eaa5f1dd25644e618d3",
  5022. "shasum": ""
  5023. },
  5024. "require": {
  5025. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  5026. "php": ">=5.3.3"
  5027. },
  5028. "type": "library",
  5029. "extra": {
  5030. "branch-alias": {
  5031. "dev-master": "1.18-dev"
  5032. },
  5033. "thanks": {
  5034. "name": "symfony/polyfill",
  5035. "url": "https://github.com/symfony/polyfill"
  5036. }
  5037. },
  5038. "autoload": {
  5039. "psr-4": {
  5040. "Symfony\\Polyfill\\Php70\\": ""
  5041. },
  5042. "files": [
  5043. "bootstrap.php"
  5044. ],
  5045. "classmap": [
  5046. "Resources/stubs"
  5047. ]
  5048. },
  5049. "notification-url": "https://packagist.org/downloads/",
  5050. "license": [
  5051. "MIT"
  5052. ],
  5053. "authors": [
  5054. {
  5055. "name": "Nicolas Grekas",
  5056. "email": "p@tchwork.com"
  5057. },
  5058. {
  5059. "name": "Symfony Community",
  5060. "homepage": "https://symfony.com/contributors"
  5061. }
  5062. ],
  5063. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  5064. "homepage": "https://symfony.com",
  5065. "keywords": [
  5066. "compatibility",
  5067. "polyfill",
  5068. "portable",
  5069. "shim"
  5070. ],
  5071. "funding": [
  5072. {
  5073. "url": "https://symfony.com/sponsor",
  5074. "type": "custom"
  5075. },
  5076. {
  5077. "url": "https://github.com/fabpot",
  5078. "type": "github"
  5079. },
  5080. {
  5081. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5082. "type": "tidelift"
  5083. }
  5084. ],
  5085. "time": "2020-07-14T12:35:20+00:00"
  5086. },
  5087. {
  5088. "name": "symfony/polyfill-php72",
  5089. "version": "v1.18.1",
  5090. "source": {
  5091. "type": "git",
  5092. "url": "https://github.com/symfony/polyfill-php72.git",
  5093. "reference": "639447d008615574653fb3bc60d1986d7172eaae"
  5094. },
  5095. "dist": {
  5096. "type": "zip",
  5097. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/639447d008615574653fb3bc60d1986d7172eaae",
  5098. "reference": "639447d008615574653fb3bc60d1986d7172eaae",
  5099. "shasum": ""
  5100. },
  5101. "require": {
  5102. "php": ">=5.3.3"
  5103. },
  5104. "type": "library",
  5105. "extra": {
  5106. "branch-alias": {
  5107. "dev-master": "1.18-dev"
  5108. },
  5109. "thanks": {
  5110. "name": "symfony/polyfill",
  5111. "url": "https://github.com/symfony/polyfill"
  5112. }
  5113. },
  5114. "autoload": {
  5115. "psr-4": {
  5116. "Symfony\\Polyfill\\Php72\\": ""
  5117. },
  5118. "files": [
  5119. "bootstrap.php"
  5120. ]
  5121. },
  5122. "notification-url": "https://packagist.org/downloads/",
  5123. "license": [
  5124. "MIT"
  5125. ],
  5126. "authors": [
  5127. {
  5128. "name": "Nicolas Grekas",
  5129. "email": "p@tchwork.com"
  5130. },
  5131. {
  5132. "name": "Symfony Community",
  5133. "homepage": "https://symfony.com/contributors"
  5134. }
  5135. ],
  5136. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5137. "homepage": "https://symfony.com",
  5138. "keywords": [
  5139. "compatibility",
  5140. "polyfill",
  5141. "portable",
  5142. "shim"
  5143. ],
  5144. "funding": [
  5145. {
  5146. "url": "https://symfony.com/sponsor",
  5147. "type": "custom"
  5148. },
  5149. {
  5150. "url": "https://github.com/fabpot",
  5151. "type": "github"
  5152. },
  5153. {
  5154. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5155. "type": "tidelift"
  5156. }
  5157. ],
  5158. "time": "2020-07-14T12:35:20+00:00"
  5159. },
  5160. {
  5161. "name": "symfony/polyfill-php73",
  5162. "version": "v1.18.1",
  5163. "source": {
  5164. "type": "git",
  5165. "url": "https://github.com/symfony/polyfill-php73.git",
  5166. "reference": "fffa1a52a023e782cdcc221d781fe1ec8f87fcca"
  5167. },
  5168. "dist": {
  5169. "type": "zip",
  5170. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fffa1a52a023e782cdcc221d781fe1ec8f87fcca",
  5171. "reference": "fffa1a52a023e782cdcc221d781fe1ec8f87fcca",
  5172. "shasum": ""
  5173. },
  5174. "require": {
  5175. "php": ">=5.3.3"
  5176. },
  5177. "type": "library",
  5178. "extra": {
  5179. "branch-alias": {
  5180. "dev-master": "1.18-dev"
  5181. },
  5182. "thanks": {
  5183. "name": "symfony/polyfill",
  5184. "url": "https://github.com/symfony/polyfill"
  5185. }
  5186. },
  5187. "autoload": {
  5188. "psr-4": {
  5189. "Symfony\\Polyfill\\Php73\\": ""
  5190. },
  5191. "files": [
  5192. "bootstrap.php"
  5193. ],
  5194. "classmap": [
  5195. "Resources/stubs"
  5196. ]
  5197. },
  5198. "notification-url": "https://packagist.org/downloads/",
  5199. "license": [
  5200. "MIT"
  5201. ],
  5202. "authors": [
  5203. {
  5204. "name": "Nicolas Grekas",
  5205. "email": "p@tchwork.com"
  5206. },
  5207. {
  5208. "name": "Symfony Community",
  5209. "homepage": "https://symfony.com/contributors"
  5210. }
  5211. ],
  5212. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  5213. "homepage": "https://symfony.com",
  5214. "keywords": [
  5215. "compatibility",
  5216. "polyfill",
  5217. "portable",
  5218. "shim"
  5219. ],
  5220. "funding": [
  5221. {
  5222. "url": "https://symfony.com/sponsor",
  5223. "type": "custom"
  5224. },
  5225. {
  5226. "url": "https://github.com/fabpot",
  5227. "type": "github"
  5228. },
  5229. {
  5230. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5231. "type": "tidelift"
  5232. }
  5233. ],
  5234. "time": "2020-07-14T12:35:20+00:00"
  5235. },
  5236. {
  5237. "name": "symfony/polyfill-php80",
  5238. "version": "v1.18.1",
  5239. "source": {
  5240. "type": "git",
  5241. "url": "https://github.com/symfony/polyfill-php80.git",
  5242. "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981"
  5243. },
  5244. "dist": {
  5245. "type": "zip",
  5246. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/d87d5766cbf48d72388a9f6b85f280c8ad51f981",
  5247. "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981",
  5248. "shasum": ""
  5249. },
  5250. "require": {
  5251. "php": ">=7.0.8"
  5252. },
  5253. "type": "library",
  5254. "extra": {
  5255. "branch-alias": {
  5256. "dev-master": "1.18-dev"
  5257. },
  5258. "thanks": {
  5259. "name": "symfony/polyfill",
  5260. "url": "https://github.com/symfony/polyfill"
  5261. }
  5262. },
  5263. "autoload": {
  5264. "psr-4": {
  5265. "Symfony\\Polyfill\\Php80\\": ""
  5266. },
  5267. "files": [
  5268. "bootstrap.php"
  5269. ],
  5270. "classmap": [
  5271. "Resources/stubs"
  5272. ]
  5273. },
  5274. "notification-url": "https://packagist.org/downloads/",
  5275. "license": [
  5276. "MIT"
  5277. ],
  5278. "authors": [
  5279. {
  5280. "name": "Ion Bazan",
  5281. "email": "ion.bazan@gmail.com"
  5282. },
  5283. {
  5284. "name": "Nicolas Grekas",
  5285. "email": "p@tchwork.com"
  5286. },
  5287. {
  5288. "name": "Symfony Community",
  5289. "homepage": "https://symfony.com/contributors"
  5290. }
  5291. ],
  5292. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5293. "homepage": "https://symfony.com",
  5294. "keywords": [
  5295. "compatibility",
  5296. "polyfill",
  5297. "portable",
  5298. "shim"
  5299. ],
  5300. "funding": [
  5301. {
  5302. "url": "https://symfony.com/sponsor",
  5303. "type": "custom"
  5304. },
  5305. {
  5306. "url": "https://github.com/fabpot",
  5307. "type": "github"
  5308. },
  5309. {
  5310. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5311. "type": "tidelift"
  5312. }
  5313. ],
  5314. "time": "2020-07-14T12:35:20+00:00"
  5315. },
  5316. {
  5317. "name": "symfony/process",
  5318. "version": "v5.1.5",
  5319. "source": {
  5320. "type": "git",
  5321. "url": "https://github.com/symfony/process.git",
  5322. "reference": "1864216226af21eb76d9477f691e7cbf198e0402"
  5323. },
  5324. "dist": {
  5325. "type": "zip",
  5326. "url": "https://api.github.com/repos/symfony/process/zipball/1864216226af21eb76d9477f691e7cbf198e0402",
  5327. "reference": "1864216226af21eb76d9477f691e7cbf198e0402",
  5328. "shasum": ""
  5329. },
  5330. "require": {
  5331. "php": ">=7.2.5",
  5332. "symfony/polyfill-php80": "^1.15"
  5333. },
  5334. "type": "library",
  5335. "extra": {
  5336. "branch-alias": {
  5337. "dev-master": "5.1-dev"
  5338. }
  5339. },
  5340. "autoload": {
  5341. "psr-4": {
  5342. "Symfony\\Component\\Process\\": ""
  5343. },
  5344. "exclude-from-classmap": [
  5345. "/Tests/"
  5346. ]
  5347. },
  5348. "notification-url": "https://packagist.org/downloads/",
  5349. "license": [
  5350. "MIT"
  5351. ],
  5352. "authors": [
  5353. {
  5354. "name": "Fabien Potencier",
  5355. "email": "fabien@symfony.com"
  5356. },
  5357. {
  5358. "name": "Symfony Community",
  5359. "homepage": "https://symfony.com/contributors"
  5360. }
  5361. ],
  5362. "description": "Symfony Process Component",
  5363. "homepage": "https://symfony.com",
  5364. "funding": [
  5365. {
  5366. "url": "https://symfony.com/sponsor",
  5367. "type": "custom"
  5368. },
  5369. {
  5370. "url": "https://github.com/fabpot",
  5371. "type": "github"
  5372. },
  5373. {
  5374. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5375. "type": "tidelift"
  5376. }
  5377. ],
  5378. "time": "2020-07-23T08:36:24+00:00"
  5379. },
  5380. {
  5381. "name": "symfony/routing",
  5382. "version": "v5.1.5",
  5383. "source": {
  5384. "type": "git",
  5385. "url": "https://github.com/symfony/routing.git",
  5386. "reference": "47b0218344cb6af25c93ca8ee1137fafbee5005d"
  5387. },
  5388. "dist": {
  5389. "type": "zip",
  5390. "url": "https://api.github.com/repos/symfony/routing/zipball/47b0218344cb6af25c93ca8ee1137fafbee5005d",
  5391. "reference": "47b0218344cb6af25c93ca8ee1137fafbee5005d",
  5392. "shasum": ""
  5393. },
  5394. "require": {
  5395. "php": ">=7.2.5",
  5396. "symfony/deprecation-contracts": "^2.1",
  5397. "symfony/polyfill-php80": "^1.15"
  5398. },
  5399. "conflict": {
  5400. "symfony/config": "<5.0",
  5401. "symfony/dependency-injection": "<4.4",
  5402. "symfony/yaml": "<4.4"
  5403. },
  5404. "require-dev": {
  5405. "doctrine/annotations": "~1.2",
  5406. "psr/log": "~1.0",
  5407. "symfony/config": "^5.0",
  5408. "symfony/dependency-injection": "^4.4|^5.0",
  5409. "symfony/expression-language": "^4.4|^5.0",
  5410. "symfony/http-foundation": "^4.4|^5.0",
  5411. "symfony/yaml": "^4.4|^5.0"
  5412. },
  5413. "suggest": {
  5414. "doctrine/annotations": "For using the annotation loader",
  5415. "symfony/config": "For using the all-in-one router or any loader",
  5416. "symfony/expression-language": "For using expression matching",
  5417. "symfony/http-foundation": "For using a Symfony Request object",
  5418. "symfony/yaml": "For using the YAML loader"
  5419. },
  5420. "type": "library",
  5421. "extra": {
  5422. "branch-alias": {
  5423. "dev-master": "5.1-dev"
  5424. }
  5425. },
  5426. "autoload": {
  5427. "psr-4": {
  5428. "Symfony\\Component\\Routing\\": ""
  5429. },
  5430. "exclude-from-classmap": [
  5431. "/Tests/"
  5432. ]
  5433. },
  5434. "notification-url": "https://packagist.org/downloads/",
  5435. "license": [
  5436. "MIT"
  5437. ],
  5438. "authors": [
  5439. {
  5440. "name": "Fabien Potencier",
  5441. "email": "fabien@symfony.com"
  5442. },
  5443. {
  5444. "name": "Symfony Community",
  5445. "homepage": "https://symfony.com/contributors"
  5446. }
  5447. ],
  5448. "description": "Symfony Routing Component",
  5449. "homepage": "https://symfony.com",
  5450. "keywords": [
  5451. "router",
  5452. "routing",
  5453. "uri",
  5454. "url"
  5455. ],
  5456. "funding": [
  5457. {
  5458. "url": "https://symfony.com/sponsor",
  5459. "type": "custom"
  5460. },
  5461. {
  5462. "url": "https://github.com/fabpot",
  5463. "type": "github"
  5464. },
  5465. {
  5466. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5467. "type": "tidelift"
  5468. }
  5469. ],
  5470. "time": "2020-08-10T08:03:57+00:00"
  5471. },
  5472. {
  5473. "name": "symfony/service-contracts",
  5474. "version": "v2.1.3",
  5475. "source": {
  5476. "type": "git",
  5477. "url": "https://github.com/symfony/service-contracts.git",
  5478. "reference": "58c7475e5457c5492c26cc740cc0ad7464be9442"
  5479. },
  5480. "dist": {
  5481. "type": "zip",
  5482. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/58c7475e5457c5492c26cc740cc0ad7464be9442",
  5483. "reference": "58c7475e5457c5492c26cc740cc0ad7464be9442",
  5484. "shasum": ""
  5485. },
  5486. "require": {
  5487. "php": ">=7.2.5",
  5488. "psr/container": "^1.0"
  5489. },
  5490. "suggest": {
  5491. "symfony/service-implementation": ""
  5492. },
  5493. "type": "library",
  5494. "extra": {
  5495. "branch-alias": {
  5496. "dev-master": "2.1-dev"
  5497. },
  5498. "thanks": {
  5499. "name": "symfony/contracts",
  5500. "url": "https://github.com/symfony/contracts"
  5501. }
  5502. },
  5503. "autoload": {
  5504. "psr-4": {
  5505. "Symfony\\Contracts\\Service\\": ""
  5506. }
  5507. },
  5508. "notification-url": "https://packagist.org/downloads/",
  5509. "license": [
  5510. "MIT"
  5511. ],
  5512. "authors": [
  5513. {
  5514. "name": "Nicolas Grekas",
  5515. "email": "p@tchwork.com"
  5516. },
  5517. {
  5518. "name": "Symfony Community",
  5519. "homepage": "https://symfony.com/contributors"
  5520. }
  5521. ],
  5522. "description": "Generic abstractions related to writing services",
  5523. "homepage": "https://symfony.com",
  5524. "keywords": [
  5525. "abstractions",
  5526. "contracts",
  5527. "decoupling",
  5528. "interfaces",
  5529. "interoperability",
  5530. "standards"
  5531. ],
  5532. "funding": [
  5533. {
  5534. "url": "https://symfony.com/sponsor",
  5535. "type": "custom"
  5536. },
  5537. {
  5538. "url": "https://github.com/fabpot",
  5539. "type": "github"
  5540. },
  5541. {
  5542. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5543. "type": "tidelift"
  5544. }
  5545. ],
  5546. "time": "2020-07-06T13:23:11+00:00"
  5547. },
  5548. {
  5549. "name": "symfony/string",
  5550. "version": "v5.1.5",
  5551. "source": {
  5552. "type": "git",
  5553. "url": "https://github.com/symfony/string.git",
  5554. "reference": "0de4cc1e18bb596226c06a82e2e7e9bc6001a63a"
  5555. },
  5556. "dist": {
  5557. "type": "zip",
  5558. "url": "https://api.github.com/repos/symfony/string/zipball/0de4cc1e18bb596226c06a82e2e7e9bc6001a63a",
  5559. "reference": "0de4cc1e18bb596226c06a82e2e7e9bc6001a63a",
  5560. "shasum": ""
  5561. },
  5562. "require": {
  5563. "php": ">=7.2.5",
  5564. "symfony/polyfill-ctype": "~1.8",
  5565. "symfony/polyfill-intl-grapheme": "~1.0",
  5566. "symfony/polyfill-intl-normalizer": "~1.0",
  5567. "symfony/polyfill-mbstring": "~1.0",
  5568. "symfony/polyfill-php80": "~1.15"
  5569. },
  5570. "require-dev": {
  5571. "symfony/error-handler": "^4.4|^5.0",
  5572. "symfony/http-client": "^4.4|^5.0",
  5573. "symfony/translation-contracts": "^1.1|^2",
  5574. "symfony/var-exporter": "^4.4|^5.0"
  5575. },
  5576. "type": "library",
  5577. "extra": {
  5578. "branch-alias": {
  5579. "dev-master": "5.1-dev"
  5580. }
  5581. },
  5582. "autoload": {
  5583. "psr-4": {
  5584. "Symfony\\Component\\String\\": ""
  5585. },
  5586. "files": [
  5587. "Resources/functions.php"
  5588. ],
  5589. "exclude-from-classmap": [
  5590. "/Tests/"
  5591. ]
  5592. },
  5593. "notification-url": "https://packagist.org/downloads/",
  5594. "license": [
  5595. "MIT"
  5596. ],
  5597. "authors": [
  5598. {
  5599. "name": "Nicolas Grekas",
  5600. "email": "p@tchwork.com"
  5601. },
  5602. {
  5603. "name": "Symfony Community",
  5604. "homepage": "https://symfony.com/contributors"
  5605. }
  5606. ],
  5607. "description": "Symfony String component",
  5608. "homepage": "https://symfony.com",
  5609. "keywords": [
  5610. "grapheme",
  5611. "i18n",
  5612. "string",
  5613. "unicode",
  5614. "utf-8",
  5615. "utf8"
  5616. ],
  5617. "funding": [
  5618. {
  5619. "url": "https://symfony.com/sponsor",
  5620. "type": "custom"
  5621. },
  5622. {
  5623. "url": "https://github.com/fabpot",
  5624. "type": "github"
  5625. },
  5626. {
  5627. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5628. "type": "tidelift"
  5629. }
  5630. ],
  5631. "time": "2020-08-17T07:48:54+00:00"
  5632. },
  5633. {
  5634. "name": "symfony/translation",
  5635. "version": "v5.1.5",
  5636. "source": {
  5637. "type": "git",
  5638. "url": "https://github.com/symfony/translation.git",
  5639. "reference": "917b02cdc5f33e0309b8e9d33ee1480b20687413"
  5640. },
  5641. "dist": {
  5642. "type": "zip",
  5643. "url": "https://api.github.com/repos/symfony/translation/zipball/917b02cdc5f33e0309b8e9d33ee1480b20687413",
  5644. "reference": "917b02cdc5f33e0309b8e9d33ee1480b20687413",
  5645. "shasum": ""
  5646. },
  5647. "require": {
  5648. "php": ">=7.2.5",
  5649. "symfony/polyfill-mbstring": "~1.0",
  5650. "symfony/polyfill-php80": "^1.15",
  5651. "symfony/translation-contracts": "^2"
  5652. },
  5653. "conflict": {
  5654. "symfony/config": "<4.4",
  5655. "symfony/dependency-injection": "<5.0",
  5656. "symfony/http-kernel": "<5.0",
  5657. "symfony/twig-bundle": "<5.0",
  5658. "symfony/yaml": "<4.4"
  5659. },
  5660. "provide": {
  5661. "symfony/translation-implementation": "2.0"
  5662. },
  5663. "require-dev": {
  5664. "psr/log": "~1.0",
  5665. "symfony/config": "^4.4|^5.0",
  5666. "symfony/console": "^4.4|^5.0",
  5667. "symfony/dependency-injection": "^5.0",
  5668. "symfony/finder": "^4.4|^5.0",
  5669. "symfony/http-kernel": "^5.0",
  5670. "symfony/intl": "^4.4|^5.0",
  5671. "symfony/service-contracts": "^1.1.2|^2",
  5672. "symfony/yaml": "^4.4|^5.0"
  5673. },
  5674. "suggest": {
  5675. "psr/log-implementation": "To use logging capability in translator",
  5676. "symfony/config": "",
  5677. "symfony/yaml": ""
  5678. },
  5679. "type": "library",
  5680. "extra": {
  5681. "branch-alias": {
  5682. "dev-master": "5.1-dev"
  5683. }
  5684. },
  5685. "autoload": {
  5686. "psr-4": {
  5687. "Symfony\\Component\\Translation\\": ""
  5688. },
  5689. "exclude-from-classmap": [
  5690. "/Tests/"
  5691. ]
  5692. },
  5693. "notification-url": "https://packagist.org/downloads/",
  5694. "license": [
  5695. "MIT"
  5696. ],
  5697. "authors": [
  5698. {
  5699. "name": "Fabien Potencier",
  5700. "email": "fabien@symfony.com"
  5701. },
  5702. {
  5703. "name": "Symfony Community",
  5704. "homepage": "https://symfony.com/contributors"
  5705. }
  5706. ],
  5707. "description": "Symfony Translation Component",
  5708. "homepage": "https://symfony.com",
  5709. "funding": [
  5710. {
  5711. "url": "https://symfony.com/sponsor",
  5712. "type": "custom"
  5713. },
  5714. {
  5715. "url": "https://github.com/fabpot",
  5716. "type": "github"
  5717. },
  5718. {
  5719. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5720. "type": "tidelift"
  5721. }
  5722. ],
  5723. "time": "2020-08-17T10:01:29+00:00"
  5724. },
  5725. {
  5726. "name": "symfony/translation-contracts",
  5727. "version": "v2.1.3",
  5728. "source": {
  5729. "type": "git",
  5730. "url": "https://github.com/symfony/translation-contracts.git",
  5731. "reference": "616a9773c853097607cf9dd6577d5b143ffdcd63"
  5732. },
  5733. "dist": {
  5734. "type": "zip",
  5735. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/616a9773c853097607cf9dd6577d5b143ffdcd63",
  5736. "reference": "616a9773c853097607cf9dd6577d5b143ffdcd63",
  5737. "shasum": ""
  5738. },
  5739. "require": {
  5740. "php": ">=7.2.5"
  5741. },
  5742. "suggest": {
  5743. "symfony/translation-implementation": ""
  5744. },
  5745. "type": "library",
  5746. "extra": {
  5747. "branch-alias": {
  5748. "dev-master": "2.1-dev"
  5749. },
  5750. "thanks": {
  5751. "name": "symfony/contracts",
  5752. "url": "https://github.com/symfony/contracts"
  5753. }
  5754. },
  5755. "autoload": {
  5756. "psr-4": {
  5757. "Symfony\\Contracts\\Translation\\": ""
  5758. }
  5759. },
  5760. "notification-url": "https://packagist.org/downloads/",
  5761. "license": [
  5762. "MIT"
  5763. ],
  5764. "authors": [
  5765. {
  5766. "name": "Nicolas Grekas",
  5767. "email": "p@tchwork.com"
  5768. },
  5769. {
  5770. "name": "Symfony Community",
  5771. "homepage": "https://symfony.com/contributors"
  5772. }
  5773. ],
  5774. "description": "Generic abstractions related to translation",
  5775. "homepage": "https://symfony.com",
  5776. "keywords": [
  5777. "abstractions",
  5778. "contracts",
  5779. "decoupling",
  5780. "interfaces",
  5781. "interoperability",
  5782. "standards"
  5783. ],
  5784. "funding": [
  5785. {
  5786. "url": "https://symfony.com/sponsor",
  5787. "type": "custom"
  5788. },
  5789. {
  5790. "url": "https://github.com/fabpot",
  5791. "type": "github"
  5792. },
  5793. {
  5794. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5795. "type": "tidelift"
  5796. }
  5797. ],
  5798. "time": "2020-07-06T13:23:11+00:00"
  5799. },
  5800. {
  5801. "name": "symfony/var-dumper",
  5802. "version": "v5.1.5",
  5803. "source": {
  5804. "type": "git",
  5805. "url": "https://github.com/symfony/var-dumper.git",
  5806. "reference": "b43a3905262bcf97b2510f0621f859ca4f5287be"
  5807. },
  5808. "dist": {
  5809. "type": "zip",
  5810. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/b43a3905262bcf97b2510f0621f859ca4f5287be",
  5811. "reference": "b43a3905262bcf97b2510f0621f859ca4f5287be",
  5812. "shasum": ""
  5813. },
  5814. "require": {
  5815. "php": ">=7.2.5",
  5816. "symfony/polyfill-mbstring": "~1.0",
  5817. "symfony/polyfill-php80": "^1.15"
  5818. },
  5819. "conflict": {
  5820. "phpunit/phpunit": "<5.4.3",
  5821. "symfony/console": "<4.4"
  5822. },
  5823. "require-dev": {
  5824. "ext-iconv": "*",
  5825. "symfony/console": "^4.4|^5.0",
  5826. "symfony/process": "^4.4|^5.0",
  5827. "twig/twig": "^2.4|^3.0"
  5828. },
  5829. "suggest": {
  5830. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  5831. "ext-intl": "To show region name in time zone dump",
  5832. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  5833. },
  5834. "bin": [
  5835. "Resources/bin/var-dump-server"
  5836. ],
  5837. "type": "library",
  5838. "extra": {
  5839. "branch-alias": {
  5840. "dev-master": "5.1-dev"
  5841. }
  5842. },
  5843. "autoload": {
  5844. "files": [
  5845. "Resources/functions/dump.php"
  5846. ],
  5847. "psr-4": {
  5848. "Symfony\\Component\\VarDumper\\": ""
  5849. },
  5850. "exclude-from-classmap": [
  5851. "/Tests/"
  5852. ]
  5853. },
  5854. "notification-url": "https://packagist.org/downloads/",
  5855. "license": [
  5856. "MIT"
  5857. ],
  5858. "authors": [
  5859. {
  5860. "name": "Nicolas Grekas",
  5861. "email": "p@tchwork.com"
  5862. },
  5863. {
  5864. "name": "Symfony Community",
  5865. "homepage": "https://symfony.com/contributors"
  5866. }
  5867. ],
  5868. "description": "Symfony mechanism for exploring and dumping PHP variables",
  5869. "homepage": "https://symfony.com",
  5870. "keywords": [
  5871. "debug",
  5872. "dump"
  5873. ],
  5874. "funding": [
  5875. {
  5876. "url": "https://symfony.com/sponsor",
  5877. "type": "custom"
  5878. },
  5879. {
  5880. "url": "https://github.com/fabpot",
  5881. "type": "github"
  5882. },
  5883. {
  5884. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5885. "type": "tidelift"
  5886. }
  5887. ],
  5888. "time": "2020-08-17T07:42:30+00:00"
  5889. },
  5890. {
  5891. "name": "tijsverkoyen/css-to-inline-styles",
  5892. "version": "2.2.3",
  5893. "source": {
  5894. "type": "git",
  5895. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  5896. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  5897. },
  5898. "dist": {
  5899. "type": "zip",
  5900. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  5901. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  5902. "shasum": ""
  5903. },
  5904. "require": {
  5905. "ext-dom": "*",
  5906. "ext-libxml": "*",
  5907. "php": "^5.5 || ^7.0 || ^8.0",
  5908. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  5909. },
  5910. "require-dev": {
  5911. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  5912. },
  5913. "type": "library",
  5914. "extra": {
  5915. "branch-alias": {
  5916. "dev-master": "2.2.x-dev"
  5917. }
  5918. },
  5919. "autoload": {
  5920. "psr-4": {
  5921. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  5922. }
  5923. },
  5924. "notification-url": "https://packagist.org/downloads/",
  5925. "license": [
  5926. "BSD-3-Clause"
  5927. ],
  5928. "authors": [
  5929. {
  5930. "name": "Tijs Verkoyen",
  5931. "email": "css_to_inline_styles@verkoyen.eu",
  5932. "role": "Developer"
  5933. }
  5934. ],
  5935. "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.",
  5936. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  5937. "time": "2020-07-13T06:12:54+00:00"
  5938. },
  5939. {
  5940. "name": "vlucas/phpdotenv",
  5941. "version": "v4.1.8",
  5942. "source": {
  5943. "type": "git",
  5944. "url": "https://github.com/vlucas/phpdotenv.git",
  5945. "reference": "572af79d913627a9d70374d27a6f5d689a35de32"
  5946. },
  5947. "dist": {
  5948. "type": "zip",
  5949. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/572af79d913627a9d70374d27a6f5d689a35de32",
  5950. "reference": "572af79d913627a9d70374d27a6f5d689a35de32",
  5951. "shasum": ""
  5952. },
  5953. "require": {
  5954. "php": "^5.5.9 || ^7.0 || ^8.0",
  5955. "phpoption/phpoption": "^1.7.3",
  5956. "symfony/polyfill-ctype": "^1.17"
  5957. },
  5958. "require-dev": {
  5959. "bamarni/composer-bin-plugin": "^1.4.1",
  5960. "ext-filter": "*",
  5961. "ext-pcre": "*",
  5962. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0"
  5963. },
  5964. "suggest": {
  5965. "ext-filter": "Required to use the boolean validator.",
  5966. "ext-pcre": "Required to use most of the library."
  5967. },
  5968. "type": "library",
  5969. "extra": {
  5970. "branch-alias": {
  5971. "dev-master": "4.1-dev"
  5972. }
  5973. },
  5974. "autoload": {
  5975. "psr-4": {
  5976. "Dotenv\\": "src/"
  5977. }
  5978. },
  5979. "notification-url": "https://packagist.org/downloads/",
  5980. "license": [
  5981. "BSD-3-Clause"
  5982. ],
  5983. "authors": [
  5984. {
  5985. "name": "Graham Campbell",
  5986. "email": "graham@alt-three.com",
  5987. "homepage": "https://gjcampbell.co.uk/"
  5988. },
  5989. {
  5990. "name": "Vance Lucas",
  5991. "email": "vance@vancelucas.com",
  5992. "homepage": "https://vancelucas.com/"
  5993. }
  5994. ],
  5995. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  5996. "keywords": [
  5997. "dotenv",
  5998. "env",
  5999. "environment"
  6000. ],
  6001. "funding": [
  6002. {
  6003. "url": "https://github.com/GrahamCampbell",
  6004. "type": "github"
  6005. },
  6006. {
  6007. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  6008. "type": "tidelift"
  6009. }
  6010. ],
  6011. "time": "2020-07-14T19:22:52+00:00"
  6012. },
  6013. {
  6014. "name": "voku/portable-ascii",
  6015. "version": "1.5.3",
  6016. "source": {
  6017. "type": "git",
  6018. "url": "https://github.com/voku/portable-ascii.git",
  6019. "reference": "25bcbf01678930251fd572891447d9e318a6e2b8"
  6020. },
  6021. "dist": {
  6022. "type": "zip",
  6023. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/25bcbf01678930251fd572891447d9e318a6e2b8",
  6024. "reference": "25bcbf01678930251fd572891447d9e318a6e2b8",
  6025. "shasum": ""
  6026. },
  6027. "require": {
  6028. "php": ">=7.0.0"
  6029. },
  6030. "require-dev": {
  6031. "phpunit/phpunit": "~6.0 || ~7.0"
  6032. },
  6033. "suggest": {
  6034. "ext-intl": "Use Intl for transliterator_transliterate() support"
  6035. },
  6036. "type": "library",
  6037. "autoload": {
  6038. "psr-4": {
  6039. "voku\\": "src/voku/"
  6040. }
  6041. },
  6042. "notification-url": "https://packagist.org/downloads/",
  6043. "license": [
  6044. "MIT"
  6045. ],
  6046. "authors": [
  6047. {
  6048. "name": "Lars Moelleken",
  6049. "homepage": "http://www.moelleken.org/"
  6050. }
  6051. ],
  6052. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  6053. "homepage": "https://github.com/voku/portable-ascii",
  6054. "keywords": [
  6055. "ascii",
  6056. "clean",
  6057. "php"
  6058. ],
  6059. "funding": [
  6060. {
  6061. "url": "https://www.paypal.me/moelleken",
  6062. "type": "custom"
  6063. },
  6064. {
  6065. "url": "https://github.com/voku",
  6066. "type": "github"
  6067. },
  6068. {
  6069. "url": "https://opencollective.com/portable-ascii",
  6070. "type": "open_collective"
  6071. },
  6072. {
  6073. "url": "https://www.patreon.com/voku",
  6074. "type": "patreon"
  6075. },
  6076. {
  6077. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  6078. "type": "tidelift"
  6079. }
  6080. ],
  6081. "time": "2020-07-22T23:32:04+00:00"
  6082. },
  6083. {
  6084. "name": "xhat/payjs",
  6085. "version": "1.4.3",
  6086. "source": {
  6087. "type": "git",
  6088. "url": "https://github.com/xhat/payjs.git",
  6089. "reference": "3d19cbd88abbd7081738b016ce9c04a1cb9edad5"
  6090. },
  6091. "dist": {
  6092. "type": "zip",
  6093. "url": "https://api.github.com/repos/xhat/payjs/zipball/3d19cbd88abbd7081738b016ce9c04a1cb9edad5",
  6094. "reference": "3d19cbd88abbd7081738b016ce9c04a1cb9edad5",
  6095. "shasum": ""
  6096. },
  6097. "type": "library",
  6098. "autoload": {
  6099. "psr-4": {
  6100. "Xhat\\Payjs\\": "src/"
  6101. }
  6102. },
  6103. "notification-url": "https://packagist.org/downloads/",
  6104. "license": [
  6105. "MIT"
  6106. ],
  6107. "authors": [
  6108. {
  6109. "name": "andy",
  6110. "email": "andy@popfeng.com"
  6111. }
  6112. ],
  6113. "description": "本项目是基于 PAYJS 的 API 开发的 Composer Package,可直接用于生产环境 https://payjs.cn",
  6114. "time": "2019-08-13T04:58:08+00:00"
  6115. },
  6116. {
  6117. "name": "zbrettonye/geetest",
  6118. "version": "v1.1.0",
  6119. "source": {
  6120. "type": "git",
  6121. "url": "https://github.com/ZBrettonYe/geetest.git",
  6122. "reference": "98339e279526b6c693d8a66edbe3ebf05e800a91"
  6123. },
  6124. "dist": {
  6125. "type": "zip",
  6126. "url": "https://api.github.com/repos/ZBrettonYe/geetest/zipball/98339e279526b6c693d8a66edbe3ebf05e800a91",
  6127. "reference": "98339e279526b6c693d8a66edbe3ebf05e800a91",
  6128. "shasum": ""
  6129. },
  6130. "require": {
  6131. "illuminate/routing": "^5.5 || ^6 || ^7",
  6132. "illuminate/support": "^5.5 || ^6 || ^7",
  6133. "php": "^7.3"
  6134. },
  6135. "require-dev": {
  6136. "mockery/mockery": "^1.4",
  6137. "phpunit/phpunit": "^9.0"
  6138. },
  6139. "type": "library",
  6140. "extra": {
  6141. "laravel": {
  6142. "providers": [
  6143. "ZBrettonYe\\Geetest\\GeetestServiceProvider"
  6144. ],
  6145. "aliases": {
  6146. "Geetest": "ZBrettonYe\\Geetest\\Geetest"
  6147. }
  6148. }
  6149. },
  6150. "autoload": {
  6151. "psr-4": {
  6152. "ZBrettonYe\\Geetest\\": "src/"
  6153. }
  6154. },
  6155. "notification-url": "https://packagist.org/downloads/",
  6156. "license": [
  6157. "MIT"
  6158. ],
  6159. "authors": [
  6160. {
  6161. "name": "zbrettonye",
  6162. "email": "monkeyblacktech97@gmail.com"
  6163. }
  6164. ],
  6165. "description": "Geetest Package for Laravel",
  6166. "keywords": [
  6167. "geetest",
  6168. "laravel"
  6169. ],
  6170. "time": "2020-09-03T04:24:48+00:00"
  6171. },
  6172. {
  6173. "name": "zbrettonye/hcaptcha",
  6174. "version": "v1.0",
  6175. "source": {
  6176. "type": "git",
  6177. "url": "https://github.com/ZBrettonYe/hcaptcha.git",
  6178. "reference": "eef47bd522c927a8abe5d3ec0fd8ad47723799fa"
  6179. },
  6180. "dist": {
  6181. "type": "zip",
  6182. "url": "https://api.github.com/repos/ZBrettonYe/hcaptcha/zipball/eef47bd522c927a8abe5d3ec0fd8ad47723799fa",
  6183. "reference": "eef47bd522c927a8abe5d3ec0fd8ad47723799fa",
  6184. "shasum": ""
  6185. },
  6186. "require": {
  6187. "guzzlehttp/guzzle": "^6.2|^7.0",
  6188. "illuminate/support": "^5.5 || ^6 || ^7",
  6189. "php": ">=5.5.5"
  6190. },
  6191. "require-dev": {
  6192. "phpunit/phpunit": "~4.8"
  6193. },
  6194. "type": "library",
  6195. "extra": {
  6196. "laravel": {
  6197. "providers": [
  6198. "ZBrettonYe\\HCaptcha\\HCaptchaServiceProvider"
  6199. ],
  6200. "aliases": {
  6201. "HCaptcha": "ZBrettonYe\\HCaptcha\\Facades\\HCaptcha"
  6202. }
  6203. }
  6204. },
  6205. "autoload": {
  6206. "psr-4": {
  6207. "ZBrettonYe\\HCaptcha\\": "src/"
  6208. }
  6209. },
  6210. "notification-url": "https://packagist.org/downloads/",
  6211. "license": [
  6212. "MIT"
  6213. ],
  6214. "authors": [
  6215. {
  6216. "name": "zbrettonye",
  6217. "email": "monkeyblacktech97@gmail.com"
  6218. }
  6219. ],
  6220. "description": "hCaptcha For Laravel5~7",
  6221. "keywords": [
  6222. "captcha",
  6223. "hcaptcha",
  6224. "laravel"
  6225. ],
  6226. "time": "2020-09-03T05:00:52+00:00"
  6227. },
  6228. {
  6229. "name": "zbrettonye/no-captcha",
  6230. "version": "v1.0.4",
  6231. "source": {
  6232. "type": "git",
  6233. "url": "https://github.com/ZBrettonYe/no-captcha.git",
  6234. "reference": "b3753565cacf0fb80fb6472ddfbbd3fc576d0ef3"
  6235. },
  6236. "dist": {
  6237. "type": "zip",
  6238. "url": "https://api.github.com/repos/ZBrettonYe/no-captcha/zipball/b3753565cacf0fb80fb6472ddfbbd3fc576d0ef3",
  6239. "reference": "b3753565cacf0fb80fb6472ddfbbd3fc576d0ef3",
  6240. "shasum": ""
  6241. },
  6242. "require": {
  6243. "guzzlehttp/guzzle": "^6.2|^7.0",
  6244. "illuminate/support": "^5.0|^6.0|^7.0",
  6245. "php": ">=5.5.5"
  6246. },
  6247. "require-dev": {
  6248. "phpunit/phpunit": "~4.8"
  6249. },
  6250. "type": "library",
  6251. "extra": {
  6252. "laravel": {
  6253. "providers": [
  6254. "ZBrettonYe\\NoCaptcha\\NoCaptchaServiceProvider"
  6255. ],
  6256. "aliases": {
  6257. "NoCaptcha": "ZBrettonYe\\NoCaptcha\\Facades\\NoCaptcha"
  6258. }
  6259. }
  6260. },
  6261. "autoload": {
  6262. "psr-4": {
  6263. "ZBrettonYe\\NoCaptcha\\": "src/"
  6264. }
  6265. },
  6266. "notification-url": "https://packagist.org/downloads/",
  6267. "license": [
  6268. "MIT"
  6269. ],
  6270. "authors": [
  6271. {
  6272. "name": "zbrettonye",
  6273. "email": "monkeyblacktech97@gmail.com"
  6274. }
  6275. ],
  6276. "description": "No CAPTCHA reCAPTCHA For Laravel.",
  6277. "keywords": [
  6278. "captcha",
  6279. "laravel",
  6280. "laravel4",
  6281. "laravel5",
  6282. "laravel6",
  6283. "no-captcha",
  6284. "recaptcha"
  6285. ],
  6286. "time": "2020-09-03T03:49:59+00:00"
  6287. }
  6288. ],
  6289. "packages-dev": [
  6290. {
  6291. "name": "barryvdh/laravel-debugbar",
  6292. "version": "v3.4.2",
  6293. "source": {
  6294. "type": "git",
  6295. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  6296. "reference": "91ee8b3acf0d72a4937f4855bd245acbda9910ac"
  6297. },
  6298. "dist": {
  6299. "type": "zip",
  6300. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/91ee8b3acf0d72a4937f4855bd245acbda9910ac",
  6301. "reference": "91ee8b3acf0d72a4937f4855bd245acbda9910ac",
  6302. "shasum": ""
  6303. },
  6304. "require": {
  6305. "illuminate/routing": "^5.5|^6|^7",
  6306. "illuminate/session": "^5.5|^6|^7",
  6307. "illuminate/support": "^5.5|^6|^7",
  6308. "maximebf/debugbar": "^1.16.3",
  6309. "php": ">=7.0",
  6310. "symfony/debug": "^3|^4|^5",
  6311. "symfony/finder": "^3|^4|^5"
  6312. },
  6313. "require-dev": {
  6314. "orchestra/testbench": "^3.5|^4.0|^5.0",
  6315. "phpunit/phpunit": "^6.0|^7.0|^8.5|^9.0"
  6316. },
  6317. "type": "library",
  6318. "extra": {
  6319. "branch-alias": {
  6320. "dev-master": "3.2-dev"
  6321. },
  6322. "laravel": {
  6323. "providers": [
  6324. "Barryvdh\\Debugbar\\ServiceProvider"
  6325. ],
  6326. "aliases": {
  6327. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  6328. }
  6329. }
  6330. },
  6331. "autoload": {
  6332. "psr-4": {
  6333. "Barryvdh\\Debugbar\\": "src/"
  6334. },
  6335. "files": [
  6336. "src/helpers.php"
  6337. ]
  6338. },
  6339. "notification-url": "https://packagist.org/downloads/",
  6340. "license": [
  6341. "MIT"
  6342. ],
  6343. "authors": [
  6344. {
  6345. "name": "Barry vd. Heuvel",
  6346. "email": "barryvdh@gmail.com"
  6347. }
  6348. ],
  6349. "description": "PHP Debugbar integration for Laravel",
  6350. "keywords": [
  6351. "debug",
  6352. "debugbar",
  6353. "laravel",
  6354. "profiler",
  6355. "webprofiler"
  6356. ],
  6357. "funding": [
  6358. {
  6359. "url": "https://github.com/barryvdh",
  6360. "type": "github"
  6361. }
  6362. ],
  6363. "time": "2020-08-30T07:08:17+00:00"
  6364. },
  6365. {
  6366. "name": "barryvdh/laravel-ide-helper",
  6367. "version": "v2.8.0",
  6368. "source": {
  6369. "type": "git",
  6370. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  6371. "reference": "ba95d18ef55c91295250ae8b7bfa73d8fb866b9b"
  6372. },
  6373. "dist": {
  6374. "type": "zip",
  6375. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/ba95d18ef55c91295250ae8b7bfa73d8fb866b9b",
  6376. "reference": "ba95d18ef55c91295250ae8b7bfa73d8fb866b9b",
  6377. "shasum": ""
  6378. },
  6379. "require": {
  6380. "barryvdh/reflection-docblock": "^2.0.6",
  6381. "composer/composer": "^1.6 || ^2.0@dev",
  6382. "doctrine/dbal": "~2.3",
  6383. "illuminate/console": "^5.5 || ^6 || ^7",
  6384. "illuminate/filesystem": "^5.5 || ^6 || ^7",
  6385. "illuminate/support": "^5.5 || ^6 || ^7",
  6386. "php": ">=7.2",
  6387. "phpdocumentor/type-resolver": "^1.1.0"
  6388. },
  6389. "require-dev": {
  6390. "illuminate/config": "^5.5 || ^6 || ^7",
  6391. "illuminate/view": "^5.5 || ^6 || ^7",
  6392. "mockery/mockery": "^1.3",
  6393. "orchestra/testbench": "^3.5 || ^4 || ^5",
  6394. "phpro/grumphp": "^0.19.0",
  6395. "spatie/phpunit-snapshot-assertions": "^1.4 || ^2.2 || ^3",
  6396. "squizlabs/php_codesniffer": "^3.5",
  6397. "vimeo/psalm": "^3.12"
  6398. },
  6399. "type": "library",
  6400. "extra": {
  6401. "branch-alias": {
  6402. "dev-master": "2.7-dev"
  6403. },
  6404. "laravel": {
  6405. "providers": [
  6406. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  6407. ]
  6408. }
  6409. },
  6410. "autoload": {
  6411. "psr-4": {
  6412. "Barryvdh\\LaravelIdeHelper\\": "src"
  6413. }
  6414. },
  6415. "notification-url": "https://packagist.org/downloads/",
  6416. "license": [
  6417. "MIT"
  6418. ],
  6419. "authors": [
  6420. {
  6421. "name": "Barry vd. Heuvel",
  6422. "email": "barryvdh@gmail.com"
  6423. }
  6424. ],
  6425. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  6426. "keywords": [
  6427. "autocomplete",
  6428. "codeintel",
  6429. "helper",
  6430. "ide",
  6431. "laravel",
  6432. "netbeans",
  6433. "phpdoc",
  6434. "phpstorm",
  6435. "sublime"
  6436. ],
  6437. "funding": [
  6438. {
  6439. "url": "https://github.com/barryvdh",
  6440. "type": "github"
  6441. }
  6442. ],
  6443. "time": "2020-08-10T08:22:48+00:00"
  6444. },
  6445. {
  6446. "name": "barryvdh/reflection-docblock",
  6447. "version": "v2.0.6",
  6448. "source": {
  6449. "type": "git",
  6450. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  6451. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  6452. },
  6453. "dist": {
  6454. "type": "zip",
  6455. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  6456. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  6457. "shasum": ""
  6458. },
  6459. "require": {
  6460. "php": ">=5.3.3"
  6461. },
  6462. "require-dev": {
  6463. "phpunit/phpunit": "~4.0,<4.5"
  6464. },
  6465. "suggest": {
  6466. "dflydev/markdown": "~1.0",
  6467. "erusev/parsedown": "~1.0"
  6468. },
  6469. "type": "library",
  6470. "extra": {
  6471. "branch-alias": {
  6472. "dev-master": "2.0.x-dev"
  6473. }
  6474. },
  6475. "autoload": {
  6476. "psr-0": {
  6477. "Barryvdh": [
  6478. "src/"
  6479. ]
  6480. }
  6481. },
  6482. "notification-url": "https://packagist.org/downloads/",
  6483. "license": [
  6484. "MIT"
  6485. ],
  6486. "authors": [
  6487. {
  6488. "name": "Mike van Riel",
  6489. "email": "mike.vanriel@naenius.com"
  6490. }
  6491. ],
  6492. "time": "2018-12-13T10:34:14+00:00"
  6493. },
  6494. {
  6495. "name": "composer/ca-bundle",
  6496. "version": "1.2.8",
  6497. "source": {
  6498. "type": "git",
  6499. "url": "https://github.com/composer/ca-bundle.git",
  6500. "reference": "8a7ecad675253e4654ea05505233285377405215"
  6501. },
  6502. "dist": {
  6503. "type": "zip",
  6504. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/8a7ecad675253e4654ea05505233285377405215",
  6505. "reference": "8a7ecad675253e4654ea05505233285377405215",
  6506. "shasum": ""
  6507. },
  6508. "require": {
  6509. "ext-openssl": "*",
  6510. "ext-pcre": "*",
  6511. "php": "^5.3.2 || ^7.0 || ^8.0"
  6512. },
  6513. "require-dev": {
  6514. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8",
  6515. "psr/log": "^1.0",
  6516. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0"
  6517. },
  6518. "type": "library",
  6519. "extra": {
  6520. "branch-alias": {
  6521. "dev-master": "1.x-dev"
  6522. }
  6523. },
  6524. "autoload": {
  6525. "psr-4": {
  6526. "Composer\\CaBundle\\": "src"
  6527. }
  6528. },
  6529. "notification-url": "https://packagist.org/downloads/",
  6530. "license": [
  6531. "MIT"
  6532. ],
  6533. "authors": [
  6534. {
  6535. "name": "Jordi Boggiano",
  6536. "email": "j.boggiano@seld.be",
  6537. "homepage": "http://seld.be"
  6538. }
  6539. ],
  6540. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  6541. "keywords": [
  6542. "cabundle",
  6543. "cacert",
  6544. "certificate",
  6545. "ssl",
  6546. "tls"
  6547. ],
  6548. "funding": [
  6549. {
  6550. "url": "https://packagist.com",
  6551. "type": "custom"
  6552. },
  6553. {
  6554. "url": "https://github.com/composer",
  6555. "type": "github"
  6556. },
  6557. {
  6558. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6559. "type": "tidelift"
  6560. }
  6561. ],
  6562. "time": "2020-08-23T12:54:47+00:00"
  6563. },
  6564. {
  6565. "name": "composer/composer",
  6566. "version": "1.10.10",
  6567. "source": {
  6568. "type": "git",
  6569. "url": "https://github.com/composer/composer.git",
  6570. "reference": "32966a3b1d48bc01472a8321fd6472b44fad033a"
  6571. },
  6572. "dist": {
  6573. "type": "zip",
  6574. "url": "https://api.github.com/repos/composer/composer/zipball/32966a3b1d48bc01472a8321fd6472b44fad033a",
  6575. "reference": "32966a3b1d48bc01472a8321fd6472b44fad033a",
  6576. "shasum": ""
  6577. },
  6578. "require": {
  6579. "composer/ca-bundle": "^1.0",
  6580. "composer/semver": "^1.0",
  6581. "composer/spdx-licenses": "^1.2",
  6582. "composer/xdebug-handler": "^1.1",
  6583. "justinrainbow/json-schema": "^5.2.10",
  6584. "php": "^5.3.2 || ^7.0",
  6585. "psr/log": "^1.0",
  6586. "seld/jsonlint": "^1.4",
  6587. "seld/phar-utils": "^1.0",
  6588. "symfony/console": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  6589. "symfony/filesystem": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  6590. "symfony/finder": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  6591. "symfony/process": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  6592. },
  6593. "conflict": {
  6594. "symfony/console": "2.8.38"
  6595. },
  6596. "require-dev": {
  6597. "phpspec/prophecy": "^1.10",
  6598. "symfony/phpunit-bridge": "^4.2"
  6599. },
  6600. "suggest": {
  6601. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  6602. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  6603. "ext-zlib": "Allow gzip compression of HTTP requests"
  6604. },
  6605. "bin": [
  6606. "bin/composer"
  6607. ],
  6608. "type": "library",
  6609. "extra": {
  6610. "branch-alias": {
  6611. "dev-master": "1.10-dev"
  6612. }
  6613. },
  6614. "autoload": {
  6615. "psr-4": {
  6616. "Composer\\": "src/Composer"
  6617. }
  6618. },
  6619. "notification-url": "https://packagist.org/downloads/",
  6620. "license": [
  6621. "MIT"
  6622. ],
  6623. "authors": [
  6624. {
  6625. "name": "Nils Adermann",
  6626. "email": "naderman@naderman.de",
  6627. "homepage": "http://www.naderman.de"
  6628. },
  6629. {
  6630. "name": "Jordi Boggiano",
  6631. "email": "j.boggiano@seld.be",
  6632. "homepage": "http://seld.be"
  6633. }
  6634. ],
  6635. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  6636. "homepage": "https://getcomposer.org/",
  6637. "keywords": [
  6638. "autoload",
  6639. "dependency",
  6640. "package"
  6641. ],
  6642. "funding": [
  6643. {
  6644. "url": "https://packagist.com",
  6645. "type": "custom"
  6646. },
  6647. {
  6648. "url": "https://github.com/composer",
  6649. "type": "github"
  6650. },
  6651. {
  6652. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6653. "type": "tidelift"
  6654. }
  6655. ],
  6656. "time": "2020-08-03T09:35:19+00:00"
  6657. },
  6658. {
  6659. "name": "composer/semver",
  6660. "version": "1.5.1",
  6661. "source": {
  6662. "type": "git",
  6663. "url": "https://github.com/composer/semver.git",
  6664. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de"
  6665. },
  6666. "dist": {
  6667. "type": "zip",
  6668. "url": "https://api.github.com/repos/composer/semver/zipball/c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  6669. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  6670. "shasum": ""
  6671. },
  6672. "require": {
  6673. "php": "^5.3.2 || ^7.0"
  6674. },
  6675. "require-dev": {
  6676. "phpunit/phpunit": "^4.5 || ^5.0.5"
  6677. },
  6678. "type": "library",
  6679. "extra": {
  6680. "branch-alias": {
  6681. "dev-master": "1.x-dev"
  6682. }
  6683. },
  6684. "autoload": {
  6685. "psr-4": {
  6686. "Composer\\Semver\\": "src"
  6687. }
  6688. },
  6689. "notification-url": "https://packagist.org/downloads/",
  6690. "license": [
  6691. "MIT"
  6692. ],
  6693. "authors": [
  6694. {
  6695. "name": "Nils Adermann",
  6696. "email": "naderman@naderman.de",
  6697. "homepage": "http://www.naderman.de"
  6698. },
  6699. {
  6700. "name": "Jordi Boggiano",
  6701. "email": "j.boggiano@seld.be",
  6702. "homepage": "http://seld.be"
  6703. },
  6704. {
  6705. "name": "Rob Bast",
  6706. "email": "rob.bast@gmail.com",
  6707. "homepage": "http://robbast.nl"
  6708. }
  6709. ],
  6710. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  6711. "keywords": [
  6712. "semantic",
  6713. "semver",
  6714. "validation",
  6715. "versioning"
  6716. ],
  6717. "time": "2020-01-13T12:06:48+00:00"
  6718. },
  6719. {
  6720. "name": "composer/spdx-licenses",
  6721. "version": "1.5.4",
  6722. "source": {
  6723. "type": "git",
  6724. "url": "https://github.com/composer/spdx-licenses.git",
  6725. "reference": "6946f785871e2314c60b4524851f3702ea4f2223"
  6726. },
  6727. "dist": {
  6728. "type": "zip",
  6729. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/6946f785871e2314c60b4524851f3702ea4f2223",
  6730. "reference": "6946f785871e2314c60b4524851f3702ea4f2223",
  6731. "shasum": ""
  6732. },
  6733. "require": {
  6734. "php": "^5.3.2 || ^7.0 || ^8.0"
  6735. },
  6736. "require-dev": {
  6737. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
  6738. },
  6739. "type": "library",
  6740. "extra": {
  6741. "branch-alias": {
  6742. "dev-master": "1.x-dev"
  6743. }
  6744. },
  6745. "autoload": {
  6746. "psr-4": {
  6747. "Composer\\Spdx\\": "src"
  6748. }
  6749. },
  6750. "notification-url": "https://packagist.org/downloads/",
  6751. "license": [
  6752. "MIT"
  6753. ],
  6754. "authors": [
  6755. {
  6756. "name": "Nils Adermann",
  6757. "email": "naderman@naderman.de",
  6758. "homepage": "http://www.naderman.de"
  6759. },
  6760. {
  6761. "name": "Jordi Boggiano",
  6762. "email": "j.boggiano@seld.be",
  6763. "homepage": "http://seld.be"
  6764. },
  6765. {
  6766. "name": "Rob Bast",
  6767. "email": "rob.bast@gmail.com",
  6768. "homepage": "http://robbast.nl"
  6769. }
  6770. ],
  6771. "description": "SPDX licenses list and validation library.",
  6772. "keywords": [
  6773. "license",
  6774. "spdx",
  6775. "validator"
  6776. ],
  6777. "funding": [
  6778. {
  6779. "url": "https://packagist.com",
  6780. "type": "custom"
  6781. },
  6782. {
  6783. "url": "https://github.com/composer",
  6784. "type": "github"
  6785. },
  6786. {
  6787. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6788. "type": "tidelift"
  6789. }
  6790. ],
  6791. "time": "2020-07-15T15:35:07+00:00"
  6792. },
  6793. {
  6794. "name": "composer/xdebug-handler",
  6795. "version": "1.4.3",
  6796. "source": {
  6797. "type": "git",
  6798. "url": "https://github.com/composer/xdebug-handler.git",
  6799. "reference": "ebd27a9866ae8254e873866f795491f02418c5a5"
  6800. },
  6801. "dist": {
  6802. "type": "zip",
  6803. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ebd27a9866ae8254e873866f795491f02418c5a5",
  6804. "reference": "ebd27a9866ae8254e873866f795491f02418c5a5",
  6805. "shasum": ""
  6806. },
  6807. "require": {
  6808. "php": "^5.3.2 || ^7.0 || ^8.0",
  6809. "psr/log": "^1.0"
  6810. },
  6811. "require-dev": {
  6812. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
  6813. },
  6814. "type": "library",
  6815. "autoload": {
  6816. "psr-4": {
  6817. "Composer\\XdebugHandler\\": "src"
  6818. }
  6819. },
  6820. "notification-url": "https://packagist.org/downloads/",
  6821. "license": [
  6822. "MIT"
  6823. ],
  6824. "authors": [
  6825. {
  6826. "name": "John Stevenson",
  6827. "email": "john-stevenson@blueyonder.co.uk"
  6828. }
  6829. ],
  6830. "description": "Restarts a process without Xdebug.",
  6831. "keywords": [
  6832. "Xdebug",
  6833. "performance"
  6834. ],
  6835. "funding": [
  6836. {
  6837. "url": "https://packagist.com",
  6838. "type": "custom"
  6839. },
  6840. {
  6841. "url": "https://github.com/composer",
  6842. "type": "github"
  6843. },
  6844. {
  6845. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6846. "type": "tidelift"
  6847. }
  6848. ],
  6849. "time": "2020-08-19T10:27:58+00:00"
  6850. },
  6851. {
  6852. "name": "doctrine/cache",
  6853. "version": "1.10.2",
  6854. "source": {
  6855. "type": "git",
  6856. "url": "https://github.com/doctrine/cache.git",
  6857. "reference": "13e3381b25847283a91948d04640543941309727"
  6858. },
  6859. "dist": {
  6860. "type": "zip",
  6861. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  6862. "reference": "13e3381b25847283a91948d04640543941309727",
  6863. "shasum": ""
  6864. },
  6865. "require": {
  6866. "php": "~7.1 || ^8.0"
  6867. },
  6868. "conflict": {
  6869. "doctrine/common": ">2.2,<2.4"
  6870. },
  6871. "require-dev": {
  6872. "alcaeus/mongo-php-adapter": "^1.1",
  6873. "doctrine/coding-standard": "^6.0",
  6874. "mongodb/mongodb": "^1.1",
  6875. "phpunit/phpunit": "^7.0",
  6876. "predis/predis": "~1.0"
  6877. },
  6878. "suggest": {
  6879. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  6880. },
  6881. "type": "library",
  6882. "extra": {
  6883. "branch-alias": {
  6884. "dev-master": "1.9.x-dev"
  6885. }
  6886. },
  6887. "autoload": {
  6888. "psr-4": {
  6889. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  6890. }
  6891. },
  6892. "notification-url": "https://packagist.org/downloads/",
  6893. "license": [
  6894. "MIT"
  6895. ],
  6896. "authors": [
  6897. {
  6898. "name": "Guilherme Blanco",
  6899. "email": "guilhermeblanco@gmail.com"
  6900. },
  6901. {
  6902. "name": "Roman Borschel",
  6903. "email": "roman@code-factory.org"
  6904. },
  6905. {
  6906. "name": "Benjamin Eberlei",
  6907. "email": "kontakt@beberlei.de"
  6908. },
  6909. {
  6910. "name": "Jonathan Wage",
  6911. "email": "jonwage@gmail.com"
  6912. },
  6913. {
  6914. "name": "Johannes Schmitt",
  6915. "email": "schmittjoh@gmail.com"
  6916. }
  6917. ],
  6918. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  6919. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  6920. "keywords": [
  6921. "abstraction",
  6922. "apcu",
  6923. "cache",
  6924. "caching",
  6925. "couchdb",
  6926. "memcached",
  6927. "php",
  6928. "redis",
  6929. "xcache"
  6930. ],
  6931. "funding": [
  6932. {
  6933. "url": "https://www.doctrine-project.org/sponsorship.html",
  6934. "type": "custom"
  6935. },
  6936. {
  6937. "url": "https://www.patreon.com/phpdoctrine",
  6938. "type": "patreon"
  6939. },
  6940. {
  6941. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  6942. "type": "tidelift"
  6943. }
  6944. ],
  6945. "time": "2020-07-07T18:54:01+00:00"
  6946. },
  6947. {
  6948. "name": "doctrine/dbal",
  6949. "version": "2.10.3",
  6950. "source": {
  6951. "type": "git",
  6952. "url": "https://github.com/doctrine/dbal.git",
  6953. "reference": "03ca23afc2ee062f5d3e32426ad37c34a4770dcf"
  6954. },
  6955. "dist": {
  6956. "type": "zip",
  6957. "url": "https://api.github.com/repos/doctrine/dbal/zipball/03ca23afc2ee062f5d3e32426ad37c34a4770dcf",
  6958. "reference": "03ca23afc2ee062f5d3e32426ad37c34a4770dcf",
  6959. "shasum": ""
  6960. },
  6961. "require": {
  6962. "doctrine/cache": "^1.0",
  6963. "doctrine/event-manager": "^1.0",
  6964. "ext-pdo": "*",
  6965. "php": "^7.2"
  6966. },
  6967. "require-dev": {
  6968. "doctrine/coding-standard": "^8.1",
  6969. "jetbrains/phpstorm-stubs": "^2019.1",
  6970. "nikic/php-parser": "^4.4",
  6971. "phpstan/phpstan": "^0.12.40",
  6972. "phpunit/phpunit": "^8.5.5",
  6973. "psalm/plugin-phpunit": "^0.10.0",
  6974. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  6975. "vimeo/psalm": "^3.14.2"
  6976. },
  6977. "suggest": {
  6978. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  6979. },
  6980. "bin": [
  6981. "bin/doctrine-dbal"
  6982. ],
  6983. "type": "library",
  6984. "extra": {
  6985. "branch-alias": {
  6986. "dev-master": "2.10.x-dev",
  6987. "dev-develop": "3.0.x-dev"
  6988. }
  6989. },
  6990. "autoload": {
  6991. "psr-4": {
  6992. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  6993. }
  6994. },
  6995. "notification-url": "https://packagist.org/downloads/",
  6996. "license": [
  6997. "MIT"
  6998. ],
  6999. "authors": [
  7000. {
  7001. "name": "Guilherme Blanco",
  7002. "email": "guilhermeblanco@gmail.com"
  7003. },
  7004. {
  7005. "name": "Roman Borschel",
  7006. "email": "roman@code-factory.org"
  7007. },
  7008. {
  7009. "name": "Benjamin Eberlei",
  7010. "email": "kontakt@beberlei.de"
  7011. },
  7012. {
  7013. "name": "Jonathan Wage",
  7014. "email": "jonwage@gmail.com"
  7015. }
  7016. ],
  7017. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  7018. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  7019. "keywords": [
  7020. "abstraction",
  7021. "database",
  7022. "db2",
  7023. "dbal",
  7024. "mariadb",
  7025. "mssql",
  7026. "mysql",
  7027. "oci8",
  7028. "oracle",
  7029. "pdo",
  7030. "pgsql",
  7031. "postgresql",
  7032. "queryobject",
  7033. "sasql",
  7034. "sql",
  7035. "sqlanywhere",
  7036. "sqlite",
  7037. "sqlserver",
  7038. "sqlsrv"
  7039. ],
  7040. "funding": [
  7041. {
  7042. "url": "https://www.doctrine-project.org/sponsorship.html",
  7043. "type": "custom"
  7044. },
  7045. {
  7046. "url": "https://www.patreon.com/phpdoctrine",
  7047. "type": "patreon"
  7048. },
  7049. {
  7050. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  7051. "type": "tidelift"
  7052. }
  7053. ],
  7054. "time": "2020-09-02T01:35:42+00:00"
  7055. },
  7056. {
  7057. "name": "doctrine/event-manager",
  7058. "version": "1.1.1",
  7059. "source": {
  7060. "type": "git",
  7061. "url": "https://github.com/doctrine/event-manager.git",
  7062. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  7063. },
  7064. "dist": {
  7065. "type": "zip",
  7066. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  7067. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  7068. "shasum": ""
  7069. },
  7070. "require": {
  7071. "php": "^7.1 || ^8.0"
  7072. },
  7073. "conflict": {
  7074. "doctrine/common": "<2.9@dev"
  7075. },
  7076. "require-dev": {
  7077. "doctrine/coding-standard": "^6.0",
  7078. "phpunit/phpunit": "^7.0"
  7079. },
  7080. "type": "library",
  7081. "extra": {
  7082. "branch-alias": {
  7083. "dev-master": "1.0.x-dev"
  7084. }
  7085. },
  7086. "autoload": {
  7087. "psr-4": {
  7088. "Doctrine\\Common\\": "lib/Doctrine/Common"
  7089. }
  7090. },
  7091. "notification-url": "https://packagist.org/downloads/",
  7092. "license": [
  7093. "MIT"
  7094. ],
  7095. "authors": [
  7096. {
  7097. "name": "Guilherme Blanco",
  7098. "email": "guilhermeblanco@gmail.com"
  7099. },
  7100. {
  7101. "name": "Roman Borschel",
  7102. "email": "roman@code-factory.org"
  7103. },
  7104. {
  7105. "name": "Benjamin Eberlei",
  7106. "email": "kontakt@beberlei.de"
  7107. },
  7108. {
  7109. "name": "Jonathan Wage",
  7110. "email": "jonwage@gmail.com"
  7111. },
  7112. {
  7113. "name": "Johannes Schmitt",
  7114. "email": "schmittjoh@gmail.com"
  7115. },
  7116. {
  7117. "name": "Marco Pivetta",
  7118. "email": "ocramius@gmail.com"
  7119. }
  7120. ],
  7121. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  7122. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  7123. "keywords": [
  7124. "event",
  7125. "event dispatcher",
  7126. "event manager",
  7127. "event system",
  7128. "events"
  7129. ],
  7130. "funding": [
  7131. {
  7132. "url": "https://www.doctrine-project.org/sponsorship.html",
  7133. "type": "custom"
  7134. },
  7135. {
  7136. "url": "https://www.patreon.com/phpdoctrine",
  7137. "type": "patreon"
  7138. },
  7139. {
  7140. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  7141. "type": "tidelift"
  7142. }
  7143. ],
  7144. "time": "2020-05-29T18:28:51+00:00"
  7145. },
  7146. {
  7147. "name": "doctrine/instantiator",
  7148. "version": "1.3.1",
  7149. "source": {
  7150. "type": "git",
  7151. "url": "https://github.com/doctrine/instantiator.git",
  7152. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea"
  7153. },
  7154. "dist": {
  7155. "type": "zip",
  7156. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/f350df0268e904597e3bd9c4685c53e0e333feea",
  7157. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea",
  7158. "shasum": ""
  7159. },
  7160. "require": {
  7161. "php": "^7.1 || ^8.0"
  7162. },
  7163. "require-dev": {
  7164. "doctrine/coding-standard": "^6.0",
  7165. "ext-pdo": "*",
  7166. "ext-phar": "*",
  7167. "phpbench/phpbench": "^0.13",
  7168. "phpstan/phpstan-phpunit": "^0.11",
  7169. "phpstan/phpstan-shim": "^0.11",
  7170. "phpunit/phpunit": "^7.0"
  7171. },
  7172. "type": "library",
  7173. "extra": {
  7174. "branch-alias": {
  7175. "dev-master": "1.2.x-dev"
  7176. }
  7177. },
  7178. "autoload": {
  7179. "psr-4": {
  7180. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  7181. }
  7182. },
  7183. "notification-url": "https://packagist.org/downloads/",
  7184. "license": [
  7185. "MIT"
  7186. ],
  7187. "authors": [
  7188. {
  7189. "name": "Marco Pivetta",
  7190. "email": "ocramius@gmail.com",
  7191. "homepage": "http://ocramius.github.com/"
  7192. }
  7193. ],
  7194. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  7195. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  7196. "keywords": [
  7197. "constructor",
  7198. "instantiate"
  7199. ],
  7200. "funding": [
  7201. {
  7202. "url": "https://www.doctrine-project.org/sponsorship.html",
  7203. "type": "custom"
  7204. },
  7205. {
  7206. "url": "https://www.patreon.com/phpdoctrine",
  7207. "type": "patreon"
  7208. },
  7209. {
  7210. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  7211. "type": "tidelift"
  7212. }
  7213. ],
  7214. "time": "2020-05-29T17:27:14+00:00"
  7215. },
  7216. {
  7217. "name": "facade/flare-client-php",
  7218. "version": "1.3.5",
  7219. "source": {
  7220. "type": "git",
  7221. "url": "https://github.com/facade/flare-client-php.git",
  7222. "reference": "25907a113bfc212a38d458ae365bfb902b4e7fb8"
  7223. },
  7224. "dist": {
  7225. "type": "zip",
  7226. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/25907a113bfc212a38d458ae365bfb902b4e7fb8",
  7227. "reference": "25907a113bfc212a38d458ae365bfb902b4e7fb8",
  7228. "shasum": ""
  7229. },
  7230. "require": {
  7231. "facade/ignition-contracts": "~1.0",
  7232. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  7233. "php": "^7.1",
  7234. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  7235. "symfony/mime": "^3.4|^4.0|^5.1",
  7236. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  7237. },
  7238. "require-dev": {
  7239. "friendsofphp/php-cs-fixer": "^2.14",
  7240. "larapack/dd": "^1.1",
  7241. "phpunit/phpunit": "^7.5.16",
  7242. "spatie/phpunit-snapshot-assertions": "^2.0"
  7243. },
  7244. "type": "library",
  7245. "extra": {
  7246. "branch-alias": {
  7247. "dev-master": "1.0-dev"
  7248. }
  7249. },
  7250. "autoload": {
  7251. "psr-4": {
  7252. "Facade\\FlareClient\\": "src"
  7253. },
  7254. "files": [
  7255. "src/helpers.php"
  7256. ]
  7257. },
  7258. "notification-url": "https://packagist.org/downloads/",
  7259. "license": [
  7260. "MIT"
  7261. ],
  7262. "description": "Send PHP errors to Flare",
  7263. "homepage": "https://github.com/facade/flare-client-php",
  7264. "keywords": [
  7265. "exception",
  7266. "facade",
  7267. "flare",
  7268. "reporting"
  7269. ],
  7270. "funding": [
  7271. {
  7272. "url": "https://github.com/spatie",
  7273. "type": "github"
  7274. }
  7275. ],
  7276. "time": "2020-08-26T18:06:23+00:00"
  7277. },
  7278. {
  7279. "name": "facade/ignition",
  7280. "version": "2.3.6",
  7281. "source": {
  7282. "type": "git",
  7283. "url": "https://github.com/facade/ignition.git",
  7284. "reference": "d7d05dba5a0bdbf018a2cb7be268f22f5d73eb81"
  7285. },
  7286. "dist": {
  7287. "type": "zip",
  7288. "url": "https://api.github.com/repos/facade/ignition/zipball/d7d05dba5a0bdbf018a2cb7be268f22f5d73eb81",
  7289. "reference": "d7d05dba5a0bdbf018a2cb7be268f22f5d73eb81",
  7290. "shasum": ""
  7291. },
  7292. "require": {
  7293. "ext-json": "*",
  7294. "ext-mbstring": "*",
  7295. "facade/flare-client-php": "^1.0",
  7296. "facade/ignition-contracts": "^1.0",
  7297. "filp/whoops": "^2.4",
  7298. "illuminate/support": "^7.0|^8.0",
  7299. "monolog/monolog": "^2.0",
  7300. "php": "^7.2.5",
  7301. "scrivo/highlight.php": "^9.15",
  7302. "symfony/console": "^5.0",
  7303. "symfony/var-dumper": "^5.0"
  7304. },
  7305. "require-dev": {
  7306. "friendsofphp/php-cs-fixer": "^2.14",
  7307. "mockery/mockery": "^1.3",
  7308. "orchestra/testbench": "5.0",
  7309. "psalm/plugin-laravel": "^1.2"
  7310. },
  7311. "suggest": {
  7312. "laravel/telescope": "^3.1"
  7313. },
  7314. "type": "library",
  7315. "extra": {
  7316. "branch-alias": {
  7317. "dev-master": "2.x-dev"
  7318. },
  7319. "laravel": {
  7320. "providers": [
  7321. "Facade\\Ignition\\IgnitionServiceProvider"
  7322. ],
  7323. "aliases": {
  7324. "Flare": "Facade\\Ignition\\Facades\\Flare"
  7325. }
  7326. }
  7327. },
  7328. "autoload": {
  7329. "psr-4": {
  7330. "Facade\\Ignition\\": "src"
  7331. },
  7332. "files": [
  7333. "src/helpers.php"
  7334. ]
  7335. },
  7336. "notification-url": "https://packagist.org/downloads/",
  7337. "license": [
  7338. "MIT"
  7339. ],
  7340. "description": "A beautiful error page for Laravel applications.",
  7341. "homepage": "https://github.com/facade/ignition",
  7342. "keywords": [
  7343. "error",
  7344. "flare",
  7345. "laravel",
  7346. "page"
  7347. ],
  7348. "time": "2020-08-10T13:50:38+00:00"
  7349. },
  7350. {
  7351. "name": "facade/ignition-contracts",
  7352. "version": "1.0.1",
  7353. "source": {
  7354. "type": "git",
  7355. "url": "https://github.com/facade/ignition-contracts.git",
  7356. "reference": "aeab1ce8b68b188a43e81758e750151ad7da796b"
  7357. },
  7358. "dist": {
  7359. "type": "zip",
  7360. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/aeab1ce8b68b188a43e81758e750151ad7da796b",
  7361. "reference": "aeab1ce8b68b188a43e81758e750151ad7da796b",
  7362. "shasum": ""
  7363. },
  7364. "require": {
  7365. "php": "^7.1"
  7366. },
  7367. "require-dev": {
  7368. "friendsofphp/php-cs-fixer": "^2.14",
  7369. "phpunit/phpunit": "^7.5|^8.0",
  7370. "vimeo/psalm": "^3.12"
  7371. },
  7372. "type": "library",
  7373. "autoload": {
  7374. "psr-4": {
  7375. "Facade\\IgnitionContracts\\": "src"
  7376. }
  7377. },
  7378. "notification-url": "https://packagist.org/downloads/",
  7379. "license": [
  7380. "MIT"
  7381. ],
  7382. "authors": [
  7383. {
  7384. "name": "Freek Van der Herten",
  7385. "email": "freek@spatie.be",
  7386. "homepage": "https://flareapp.io",
  7387. "role": "Developer"
  7388. }
  7389. ],
  7390. "description": "Solution contracts for Ignition",
  7391. "homepage": "https://github.com/facade/ignition-contracts",
  7392. "keywords": [
  7393. "contracts",
  7394. "flare",
  7395. "ignition"
  7396. ],
  7397. "time": "2020-07-14T10:10:28+00:00"
  7398. },
  7399. {
  7400. "name": "filp/whoops",
  7401. "version": "2.7.3",
  7402. "source": {
  7403. "type": "git",
  7404. "url": "https://github.com/filp/whoops.git",
  7405. "reference": "5d5fe9bb3d656b514d455645b3addc5f7ba7714d"
  7406. },
  7407. "dist": {
  7408. "type": "zip",
  7409. "url": "https://api.github.com/repos/filp/whoops/zipball/5d5fe9bb3d656b514d455645b3addc5f7ba7714d",
  7410. "reference": "5d5fe9bb3d656b514d455645b3addc5f7ba7714d",
  7411. "shasum": ""
  7412. },
  7413. "require": {
  7414. "php": "^5.5.9 || ^7.0",
  7415. "psr/log": "^1.0.1"
  7416. },
  7417. "require-dev": {
  7418. "mockery/mockery": "^0.9 || ^1.0",
  7419. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0",
  7420. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  7421. },
  7422. "suggest": {
  7423. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  7424. "whoops/soap": "Formats errors as SOAP responses"
  7425. },
  7426. "type": "library",
  7427. "extra": {
  7428. "branch-alias": {
  7429. "dev-master": "2.6-dev"
  7430. }
  7431. },
  7432. "autoload": {
  7433. "psr-4": {
  7434. "Whoops\\": "src/Whoops/"
  7435. }
  7436. },
  7437. "notification-url": "https://packagist.org/downloads/",
  7438. "license": [
  7439. "MIT"
  7440. ],
  7441. "authors": [
  7442. {
  7443. "name": "Filipe Dobreira",
  7444. "homepage": "https://github.com/filp",
  7445. "role": "Developer"
  7446. }
  7447. ],
  7448. "description": "php error handling for cool kids",
  7449. "homepage": "https://filp.github.io/whoops/",
  7450. "keywords": [
  7451. "error",
  7452. "exception",
  7453. "handling",
  7454. "library",
  7455. "throwable",
  7456. "whoops"
  7457. ],
  7458. "time": "2020-06-14T09:00:00+00:00"
  7459. },
  7460. {
  7461. "name": "fzaninotto/faker",
  7462. "version": "v1.9.1",
  7463. "source": {
  7464. "type": "git",
  7465. "url": "https://github.com/fzaninotto/Faker.git",
  7466. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f"
  7467. },
  7468. "dist": {
  7469. "type": "zip",
  7470. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f",
  7471. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f",
  7472. "shasum": ""
  7473. },
  7474. "require": {
  7475. "php": "^5.3.3 || ^7.0"
  7476. },
  7477. "require-dev": {
  7478. "ext-intl": "*",
  7479. "phpunit/phpunit": "^4.8.35 || ^5.7",
  7480. "squizlabs/php_codesniffer": "^2.9.2"
  7481. },
  7482. "type": "library",
  7483. "extra": {
  7484. "branch-alias": {
  7485. "dev-master": "1.9-dev"
  7486. }
  7487. },
  7488. "autoload": {
  7489. "psr-4": {
  7490. "Faker\\": "src/Faker/"
  7491. }
  7492. },
  7493. "notification-url": "https://packagist.org/downloads/",
  7494. "license": [
  7495. "MIT"
  7496. ],
  7497. "authors": [
  7498. {
  7499. "name": "François Zaninotto"
  7500. }
  7501. ],
  7502. "description": "Faker is a PHP library that generates fake data for you.",
  7503. "keywords": [
  7504. "data",
  7505. "faker",
  7506. "fixtures"
  7507. ],
  7508. "time": "2019-12-12T13:22:17+00:00"
  7509. },
  7510. {
  7511. "name": "hamcrest/hamcrest-php",
  7512. "version": "v2.0.1",
  7513. "source": {
  7514. "type": "git",
  7515. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7516. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7517. },
  7518. "dist": {
  7519. "type": "zip",
  7520. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7521. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7522. "shasum": ""
  7523. },
  7524. "require": {
  7525. "php": "^5.3|^7.0|^8.0"
  7526. },
  7527. "replace": {
  7528. "cordoval/hamcrest-php": "*",
  7529. "davedevelopment/hamcrest-php": "*",
  7530. "kodova/hamcrest-php": "*"
  7531. },
  7532. "require-dev": {
  7533. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7534. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7535. },
  7536. "type": "library",
  7537. "extra": {
  7538. "branch-alias": {
  7539. "dev-master": "2.1-dev"
  7540. }
  7541. },
  7542. "autoload": {
  7543. "classmap": [
  7544. "hamcrest"
  7545. ]
  7546. },
  7547. "notification-url": "https://packagist.org/downloads/",
  7548. "license": [
  7549. "BSD-3-Clause"
  7550. ],
  7551. "description": "This is the PHP port of Hamcrest Matchers",
  7552. "keywords": [
  7553. "test"
  7554. ],
  7555. "time": "2020-07-09T08:09:16+00:00"
  7556. },
  7557. {
  7558. "name": "justinrainbow/json-schema",
  7559. "version": "5.2.10",
  7560. "source": {
  7561. "type": "git",
  7562. "url": "https://github.com/justinrainbow/json-schema.git",
  7563. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b"
  7564. },
  7565. "dist": {
  7566. "type": "zip",
  7567. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  7568. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  7569. "shasum": ""
  7570. },
  7571. "require": {
  7572. "php": ">=5.3.3"
  7573. },
  7574. "require-dev": {
  7575. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  7576. "json-schema/json-schema-test-suite": "1.2.0",
  7577. "phpunit/phpunit": "^4.8.35"
  7578. },
  7579. "bin": [
  7580. "bin/validate-json"
  7581. ],
  7582. "type": "library",
  7583. "extra": {
  7584. "branch-alias": {
  7585. "dev-master": "5.0.x-dev"
  7586. }
  7587. },
  7588. "autoload": {
  7589. "psr-4": {
  7590. "JsonSchema\\": "src/JsonSchema/"
  7591. }
  7592. },
  7593. "notification-url": "https://packagist.org/downloads/",
  7594. "license": [
  7595. "MIT"
  7596. ],
  7597. "authors": [
  7598. {
  7599. "name": "Bruno Prieto Reis",
  7600. "email": "bruno.p.reis@gmail.com"
  7601. },
  7602. {
  7603. "name": "Justin Rainbow",
  7604. "email": "justin.rainbow@gmail.com"
  7605. },
  7606. {
  7607. "name": "Igor Wiedler",
  7608. "email": "igor@wiedler.ch"
  7609. },
  7610. {
  7611. "name": "Robert Schönthal",
  7612. "email": "seroscho@googlemail.com"
  7613. }
  7614. ],
  7615. "description": "A library to validate a json schema.",
  7616. "homepage": "https://github.com/justinrainbow/json-schema",
  7617. "keywords": [
  7618. "json",
  7619. "schema"
  7620. ],
  7621. "time": "2020-05-27T16:41:55+00:00"
  7622. },
  7623. {
  7624. "name": "laravel/telescope",
  7625. "version": "v3.5.1",
  7626. "source": {
  7627. "type": "git",
  7628. "url": "https://github.com/laravel/telescope.git",
  7629. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5"
  7630. },
  7631. "dist": {
  7632. "type": "zip",
  7633. "url": "https://api.github.com/repos/laravel/telescope/zipball/a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  7634. "reference": "a8d2e1106ba655006fde47a0b7ed53851c6398f5",
  7635. "shasum": ""
  7636. },
  7637. "require": {
  7638. "ext-json": "*",
  7639. "laravel/framework": "^6.0|^7.0",
  7640. "moontoast/math": "^1.1",
  7641. "php": "^7.2",
  7642. "symfony/var-dumper": "^4.4|^5.0"
  7643. },
  7644. "require-dev": {
  7645. "ext-gd": "*",
  7646. "orchestra/testbench": "^4.0|^5.0"
  7647. },
  7648. "type": "library",
  7649. "extra": {
  7650. "branch-alias": {
  7651. "dev-master": "3.x-dev"
  7652. },
  7653. "laravel": {
  7654. "providers": [
  7655. "Laravel\\Telescope\\TelescopeServiceProvider"
  7656. ]
  7657. }
  7658. },
  7659. "autoload": {
  7660. "psr-4": {
  7661. "Laravel\\Telescope\\": "src/"
  7662. }
  7663. },
  7664. "notification-url": "https://packagist.org/downloads/",
  7665. "license": [
  7666. "MIT"
  7667. ],
  7668. "authors": [
  7669. {
  7670. "name": "Taylor Otwell",
  7671. "email": "taylor@laravel.com"
  7672. },
  7673. {
  7674. "name": "Mohamed Said",
  7675. "email": "mohamed@laravel.com"
  7676. }
  7677. ],
  7678. "description": "An elegant debug assistant for the Laravel framework.",
  7679. "keywords": [
  7680. "debugging",
  7681. "laravel",
  7682. "monitoring"
  7683. ],
  7684. "time": "2020-07-28T19:12:33+00:00"
  7685. },
  7686. {
  7687. "name": "maximebf/debugbar",
  7688. "version": "v1.16.3",
  7689. "source": {
  7690. "type": "git",
  7691. "url": "https://github.com/maximebf/php-debugbar.git",
  7692. "reference": "1a1605b8e9bacb34cc0c6278206d699772e1d372"
  7693. },
  7694. "dist": {
  7695. "type": "zip",
  7696. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/1a1605b8e9bacb34cc0c6278206d699772e1d372",
  7697. "reference": "1a1605b8e9bacb34cc0c6278206d699772e1d372",
  7698. "shasum": ""
  7699. },
  7700. "require": {
  7701. "php": "^7.1",
  7702. "psr/log": "^1.0",
  7703. "symfony/var-dumper": "^2.6|^3|^4|^5"
  7704. },
  7705. "require-dev": {
  7706. "phpunit/phpunit": "^5"
  7707. },
  7708. "suggest": {
  7709. "kriswallsmith/assetic": "The best way to manage assets",
  7710. "monolog/monolog": "Log using Monolog",
  7711. "predis/predis": "Redis storage"
  7712. },
  7713. "type": "library",
  7714. "extra": {
  7715. "branch-alias": {
  7716. "dev-master": "1.16-dev"
  7717. }
  7718. },
  7719. "autoload": {
  7720. "psr-4": {
  7721. "DebugBar\\": "src/DebugBar/"
  7722. }
  7723. },
  7724. "notification-url": "https://packagist.org/downloads/",
  7725. "license": [
  7726. "MIT"
  7727. ],
  7728. "authors": [
  7729. {
  7730. "name": "Maxime Bouroumeau-Fuseau",
  7731. "email": "maxime.bouroumeau@gmail.com",
  7732. "homepage": "http://maximebf.com"
  7733. },
  7734. {
  7735. "name": "Barry vd. Heuvel",
  7736. "email": "barryvdh@gmail.com"
  7737. }
  7738. ],
  7739. "description": "Debug bar in the browser for php application",
  7740. "homepage": "https://github.com/maximebf/php-debugbar",
  7741. "keywords": [
  7742. "debug",
  7743. "debugbar"
  7744. ],
  7745. "time": "2020-05-06T07:06:27+00:00"
  7746. },
  7747. {
  7748. "name": "mockery/mockery",
  7749. "version": "1.4.2",
  7750. "source": {
  7751. "type": "git",
  7752. "url": "https://github.com/mockery/mockery.git",
  7753. "reference": "20cab678faed06fac225193be281ea0fddb43b93"
  7754. },
  7755. "dist": {
  7756. "type": "zip",
  7757. "url": "https://api.github.com/repos/mockery/mockery/zipball/20cab678faed06fac225193be281ea0fddb43b93",
  7758. "reference": "20cab678faed06fac225193be281ea0fddb43b93",
  7759. "shasum": ""
  7760. },
  7761. "require": {
  7762. "hamcrest/hamcrest-php": "^2.0.1",
  7763. "lib-pcre": ">=7.0",
  7764. "php": "^7.3 || ^8.0"
  7765. },
  7766. "conflict": {
  7767. "phpunit/phpunit": "<8.0"
  7768. },
  7769. "require-dev": {
  7770. "phpunit/phpunit": "^8.5 || ^9.3"
  7771. },
  7772. "type": "library",
  7773. "extra": {
  7774. "branch-alias": {
  7775. "dev-master": "1.4.x-dev"
  7776. }
  7777. },
  7778. "autoload": {
  7779. "psr-0": {
  7780. "Mockery": "library/"
  7781. }
  7782. },
  7783. "notification-url": "https://packagist.org/downloads/",
  7784. "license": [
  7785. "BSD-3-Clause"
  7786. ],
  7787. "authors": [
  7788. {
  7789. "name": "Pádraic Brady",
  7790. "email": "padraic.brady@gmail.com",
  7791. "homepage": "http://blog.astrumfutura.com"
  7792. },
  7793. {
  7794. "name": "Dave Marshall",
  7795. "email": "dave.marshall@atstsolutions.co.uk",
  7796. "homepage": "http://davedevelopment.co.uk"
  7797. }
  7798. ],
  7799. "description": "Mockery is a simple yet flexible PHP mock object framework",
  7800. "homepage": "https://github.com/mockery/mockery",
  7801. "keywords": [
  7802. "BDD",
  7803. "TDD",
  7804. "library",
  7805. "mock",
  7806. "mock objects",
  7807. "mockery",
  7808. "stub",
  7809. "test",
  7810. "test double",
  7811. "testing"
  7812. ],
  7813. "time": "2020-08-11T18:10:13+00:00"
  7814. },
  7815. {
  7816. "name": "moontoast/math",
  7817. "version": "1.2.1",
  7818. "source": {
  7819. "type": "git",
  7820. "url": "https://github.com/ramsey/moontoast-math.git",
  7821. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa"
  7822. },
  7823. "dist": {
  7824. "type": "zip",
  7825. "url": "https://api.github.com/repos/ramsey/moontoast-math/zipball/5f47d34c87767dbcc08b30377a9827df71de91fa",
  7826. "reference": "5f47d34c87767dbcc08b30377a9827df71de91fa",
  7827. "shasum": ""
  7828. },
  7829. "require": {
  7830. "php": ">=5.3.3",
  7831. "phpseclib/bcmath_compat": ">=1.0.3"
  7832. },
  7833. "require-dev": {
  7834. "jakub-onderka/php-parallel-lint": "^0.9.0",
  7835. "phpunit/phpunit": "^4.8 || ^5.5 || ^6.5 || ^7.0",
  7836. "satooshi/php-coveralls": "^0.6.1",
  7837. "squizlabs/php_codesniffer": "^2.3"
  7838. },
  7839. "type": "library",
  7840. "autoload": {
  7841. "psr-4": {
  7842. "Moontoast\\Math\\": "src/Moontoast/Math",
  7843. "Moontoast\\Math\\Exception\\": "src/Moontoast/Math/Exception"
  7844. }
  7845. },
  7846. "notification-url": "https://packagist.org/downloads/",
  7847. "license": [
  7848. "Apache-2.0"
  7849. ],
  7850. "authors": [
  7851. {
  7852. "name": "Ben Ramsey",
  7853. "email": "ben@benramsey.com",
  7854. "homepage": "https://benramsey.com"
  7855. }
  7856. ],
  7857. "description": "A mathematics library, providing functionality for large numbers",
  7858. "homepage": "https://github.com/ramsey/moontoast-math",
  7859. "keywords": [
  7860. "bcmath",
  7861. "math"
  7862. ],
  7863. "abandoned": "brick/math",
  7864. "time": "2020-01-05T04:49:34+00:00"
  7865. },
  7866. {
  7867. "name": "myclabs/deep-copy",
  7868. "version": "1.10.1",
  7869. "source": {
  7870. "type": "git",
  7871. "url": "https://github.com/myclabs/DeepCopy.git",
  7872. "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5"
  7873. },
  7874. "dist": {
  7875. "type": "zip",
  7876. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
  7877. "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
  7878. "shasum": ""
  7879. },
  7880. "require": {
  7881. "php": "^7.1 || ^8.0"
  7882. },
  7883. "replace": {
  7884. "myclabs/deep-copy": "self.version"
  7885. },
  7886. "require-dev": {
  7887. "doctrine/collections": "^1.0",
  7888. "doctrine/common": "^2.6",
  7889. "phpunit/phpunit": "^7.1"
  7890. },
  7891. "type": "library",
  7892. "autoload": {
  7893. "psr-4": {
  7894. "DeepCopy\\": "src/DeepCopy/"
  7895. },
  7896. "files": [
  7897. "src/DeepCopy/deep_copy.php"
  7898. ]
  7899. },
  7900. "notification-url": "https://packagist.org/downloads/",
  7901. "license": [
  7902. "MIT"
  7903. ],
  7904. "description": "Create deep copies (clones) of your objects",
  7905. "keywords": [
  7906. "clone",
  7907. "copy",
  7908. "duplicate",
  7909. "object",
  7910. "object graph"
  7911. ],
  7912. "funding": [
  7913. {
  7914. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7915. "type": "tidelift"
  7916. }
  7917. ],
  7918. "time": "2020-06-29T13:22:24+00:00"
  7919. },
  7920. {
  7921. "name": "nunomaduro/collision",
  7922. "version": "v4.2.0",
  7923. "source": {
  7924. "type": "git",
  7925. "url": "https://github.com/nunomaduro/collision.git",
  7926. "reference": "d50490417eded97be300a92cd7df7badc37a9018"
  7927. },
  7928. "dist": {
  7929. "type": "zip",
  7930. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/d50490417eded97be300a92cd7df7badc37a9018",
  7931. "reference": "d50490417eded97be300a92cd7df7badc37a9018",
  7932. "shasum": ""
  7933. },
  7934. "require": {
  7935. "facade/ignition-contracts": "^1.0",
  7936. "filp/whoops": "^2.4",
  7937. "php": "^7.2.5",
  7938. "symfony/console": "^5.0"
  7939. },
  7940. "require-dev": {
  7941. "facade/ignition": "^2.0",
  7942. "fideloper/proxy": "^4.2",
  7943. "friendsofphp/php-cs-fixer": "^2.16",
  7944. "fruitcake/laravel-cors": "^1.0",
  7945. "laravel/framework": "^7.0",
  7946. "laravel/tinker": "^2.0",
  7947. "nunomaduro/larastan": "^0.5",
  7948. "orchestra/testbench": "^5.0",
  7949. "phpstan/phpstan": "^0.12.3",
  7950. "phpunit/phpunit": "^8.5.1 || ^9.0"
  7951. },
  7952. "type": "library",
  7953. "extra": {
  7954. "laravel": {
  7955. "providers": [
  7956. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  7957. ]
  7958. }
  7959. },
  7960. "autoload": {
  7961. "psr-4": {
  7962. "NunoMaduro\\Collision\\": "src/"
  7963. }
  7964. },
  7965. "notification-url": "https://packagist.org/downloads/",
  7966. "license": [
  7967. "MIT"
  7968. ],
  7969. "authors": [
  7970. {
  7971. "name": "Nuno Maduro",
  7972. "email": "enunomaduro@gmail.com"
  7973. }
  7974. ],
  7975. "description": "Cli error handling for console/command-line PHP applications.",
  7976. "keywords": [
  7977. "artisan",
  7978. "cli",
  7979. "command-line",
  7980. "console",
  7981. "error",
  7982. "handling",
  7983. "laravel",
  7984. "laravel-zero",
  7985. "php",
  7986. "symfony"
  7987. ],
  7988. "funding": [
  7989. {
  7990. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  7991. "type": "custom"
  7992. },
  7993. {
  7994. "url": "https://github.com/nunomaduro",
  7995. "type": "github"
  7996. },
  7997. {
  7998. "url": "https://www.patreon.com/nunomaduro",
  7999. "type": "patreon"
  8000. }
  8001. ],
  8002. "time": "2020-04-04T19:56:08+00:00"
  8003. },
  8004. {
  8005. "name": "phar-io/manifest",
  8006. "version": "1.0.3",
  8007. "source": {
  8008. "type": "git",
  8009. "url": "https://github.com/phar-io/manifest.git",
  8010. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  8011. },
  8012. "dist": {
  8013. "type": "zip",
  8014. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  8015. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  8016. "shasum": ""
  8017. },
  8018. "require": {
  8019. "ext-dom": "*",
  8020. "ext-phar": "*",
  8021. "phar-io/version": "^2.0",
  8022. "php": "^5.6 || ^7.0"
  8023. },
  8024. "type": "library",
  8025. "extra": {
  8026. "branch-alias": {
  8027. "dev-master": "1.0.x-dev"
  8028. }
  8029. },
  8030. "autoload": {
  8031. "classmap": [
  8032. "src/"
  8033. ]
  8034. },
  8035. "notification-url": "https://packagist.org/downloads/",
  8036. "license": [
  8037. "BSD-3-Clause"
  8038. ],
  8039. "authors": [
  8040. {
  8041. "name": "Arne Blankerts",
  8042. "email": "arne@blankerts.de",
  8043. "role": "Developer"
  8044. },
  8045. {
  8046. "name": "Sebastian Heuer",
  8047. "email": "sebastian@phpeople.de",
  8048. "role": "Developer"
  8049. },
  8050. {
  8051. "name": "Sebastian Bergmann",
  8052. "email": "sebastian@phpunit.de",
  8053. "role": "Developer"
  8054. }
  8055. ],
  8056. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8057. "time": "2018-07-08T19:23:20+00:00"
  8058. },
  8059. {
  8060. "name": "phar-io/version",
  8061. "version": "2.0.1",
  8062. "source": {
  8063. "type": "git",
  8064. "url": "https://github.com/phar-io/version.git",
  8065. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  8066. },
  8067. "dist": {
  8068. "type": "zip",
  8069. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  8070. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  8071. "shasum": ""
  8072. },
  8073. "require": {
  8074. "php": "^5.6 || ^7.0"
  8075. },
  8076. "type": "library",
  8077. "autoload": {
  8078. "classmap": [
  8079. "src/"
  8080. ]
  8081. },
  8082. "notification-url": "https://packagist.org/downloads/",
  8083. "license": [
  8084. "BSD-3-Clause"
  8085. ],
  8086. "authors": [
  8087. {
  8088. "name": "Arne Blankerts",
  8089. "email": "arne@blankerts.de",
  8090. "role": "Developer"
  8091. },
  8092. {
  8093. "name": "Sebastian Heuer",
  8094. "email": "sebastian@phpeople.de",
  8095. "role": "Developer"
  8096. },
  8097. {
  8098. "name": "Sebastian Bergmann",
  8099. "email": "sebastian@phpunit.de",
  8100. "role": "Developer"
  8101. }
  8102. ],
  8103. "description": "Library for handling version information and constraints",
  8104. "time": "2018-07-08T19:19:57+00:00"
  8105. },
  8106. {
  8107. "name": "phpdocumentor/reflection-common",
  8108. "version": "2.2.0",
  8109. "source": {
  8110. "type": "git",
  8111. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  8112. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  8113. },
  8114. "dist": {
  8115. "type": "zip",
  8116. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8117. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8118. "shasum": ""
  8119. },
  8120. "require": {
  8121. "php": "^7.2 || ^8.0"
  8122. },
  8123. "type": "library",
  8124. "extra": {
  8125. "branch-alias": {
  8126. "dev-2.x": "2.x-dev"
  8127. }
  8128. },
  8129. "autoload": {
  8130. "psr-4": {
  8131. "phpDocumentor\\Reflection\\": "src/"
  8132. }
  8133. },
  8134. "notification-url": "https://packagist.org/downloads/",
  8135. "license": [
  8136. "MIT"
  8137. ],
  8138. "authors": [
  8139. {
  8140. "name": "Jaap van Otterdijk",
  8141. "email": "opensource@ijaap.nl"
  8142. }
  8143. ],
  8144. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  8145. "homepage": "http://www.phpdoc.org",
  8146. "keywords": [
  8147. "FQSEN",
  8148. "phpDocumentor",
  8149. "phpdoc",
  8150. "reflection",
  8151. "static analysis"
  8152. ],
  8153. "time": "2020-06-27T09:03:43+00:00"
  8154. },
  8155. {
  8156. "name": "phpdocumentor/reflection-docblock",
  8157. "version": "5.2.1",
  8158. "source": {
  8159. "type": "git",
  8160. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  8161. "reference": "d870572532cd70bc3fab58f2e23ad423c8404c44"
  8162. },
  8163. "dist": {
  8164. "type": "zip",
  8165. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/d870572532cd70bc3fab58f2e23ad423c8404c44",
  8166. "reference": "d870572532cd70bc3fab58f2e23ad423c8404c44",
  8167. "shasum": ""
  8168. },
  8169. "require": {
  8170. "ext-filter": "*",
  8171. "php": "^7.2 || ^8.0",
  8172. "phpdocumentor/reflection-common": "^2.2",
  8173. "phpdocumentor/type-resolver": "^1.3",
  8174. "webmozart/assert": "^1.9.1"
  8175. },
  8176. "require-dev": {
  8177. "mockery/mockery": "~1.3.2"
  8178. },
  8179. "type": "library",
  8180. "extra": {
  8181. "branch-alias": {
  8182. "dev-master": "5.x-dev"
  8183. }
  8184. },
  8185. "autoload": {
  8186. "psr-4": {
  8187. "phpDocumentor\\Reflection\\": "src"
  8188. }
  8189. },
  8190. "notification-url": "https://packagist.org/downloads/",
  8191. "license": [
  8192. "MIT"
  8193. ],
  8194. "authors": [
  8195. {
  8196. "name": "Mike van Riel",
  8197. "email": "me@mikevanriel.com"
  8198. },
  8199. {
  8200. "name": "Jaap van Otterdijk",
  8201. "email": "account@ijaap.nl"
  8202. }
  8203. ],
  8204. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  8205. "time": "2020-08-15T11:14:08+00:00"
  8206. },
  8207. {
  8208. "name": "phpdocumentor/type-resolver",
  8209. "version": "1.3.0",
  8210. "source": {
  8211. "type": "git",
  8212. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  8213. "reference": "e878a14a65245fbe78f8080eba03b47c3b705651"
  8214. },
  8215. "dist": {
  8216. "type": "zip",
  8217. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/e878a14a65245fbe78f8080eba03b47c3b705651",
  8218. "reference": "e878a14a65245fbe78f8080eba03b47c3b705651",
  8219. "shasum": ""
  8220. },
  8221. "require": {
  8222. "php": "^7.2 || ^8.0",
  8223. "phpdocumentor/reflection-common": "^2.0"
  8224. },
  8225. "require-dev": {
  8226. "ext-tokenizer": "*"
  8227. },
  8228. "type": "library",
  8229. "extra": {
  8230. "branch-alias": {
  8231. "dev-1.x": "1.x-dev"
  8232. }
  8233. },
  8234. "autoload": {
  8235. "psr-4": {
  8236. "phpDocumentor\\Reflection\\": "src"
  8237. }
  8238. },
  8239. "notification-url": "https://packagist.org/downloads/",
  8240. "license": [
  8241. "MIT"
  8242. ],
  8243. "authors": [
  8244. {
  8245. "name": "Mike van Riel",
  8246. "email": "me@mikevanriel.com"
  8247. }
  8248. ],
  8249. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  8250. "time": "2020-06-27T10:12:23+00:00"
  8251. },
  8252. {
  8253. "name": "phpseclib/bcmath_compat",
  8254. "version": "1.0.5",
  8255. "source": {
  8256. "type": "git",
  8257. "url": "https://github.com/phpseclib/bcmath_compat.git",
  8258. "reference": "89cbb63742a32730b7187773a60b6b12b9db4479"
  8259. },
  8260. "dist": {
  8261. "type": "zip",
  8262. "url": "https://api.github.com/repos/phpseclib/bcmath_compat/zipball/89cbb63742a32730b7187773a60b6b12b9db4479",
  8263. "reference": "89cbb63742a32730b7187773a60b6b12b9db4479",
  8264. "shasum": ""
  8265. },
  8266. "require": {
  8267. "phpseclib/phpseclib": ">=2.0.19"
  8268. },
  8269. "provide": {
  8270. "ext-bcmath": "7.3.5"
  8271. },
  8272. "require-dev": {
  8273. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  8274. "squizlabs/php_codesniffer": "^3.0"
  8275. },
  8276. "suggest": {
  8277. "ext-gmp": "Will enable faster math operations"
  8278. },
  8279. "type": "library",
  8280. "autoload": {
  8281. "files": [
  8282. "lib/bcmath.php"
  8283. ],
  8284. "psr-4": {
  8285. "bcmath_compat\\": "src"
  8286. }
  8287. },
  8288. "notification-url": "https://packagist.org/downloads/",
  8289. "license": [
  8290. "MIT"
  8291. ],
  8292. "authors": [
  8293. {
  8294. "name": "Jim Wigginton",
  8295. "email": "terrafrost@php.net",
  8296. "homepage": "http://phpseclib.sourceforge.net"
  8297. }
  8298. ],
  8299. "description": "PHP 5.x/7.x polyfill for bcmath extension",
  8300. "keywords": [
  8301. "BigInteger",
  8302. "bcmath",
  8303. "bigdecimal",
  8304. "math",
  8305. "polyfill"
  8306. ],
  8307. "time": "2020-04-26T16:34:33+00:00"
  8308. },
  8309. {
  8310. "name": "phpseclib/phpseclib",
  8311. "version": "2.0.28",
  8312. "source": {
  8313. "type": "git",
  8314. "url": "https://github.com/phpseclib/phpseclib.git",
  8315. "reference": "d1ca58cf33cb21046d702ae3a7b14fdacd9f3260"
  8316. },
  8317. "dist": {
  8318. "type": "zip",
  8319. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/d1ca58cf33cb21046d702ae3a7b14fdacd9f3260",
  8320. "reference": "d1ca58cf33cb21046d702ae3a7b14fdacd9f3260",
  8321. "shasum": ""
  8322. },
  8323. "require": {
  8324. "php": ">=5.3.3"
  8325. },
  8326. "require-dev": {
  8327. "phing/phing": "~2.7",
  8328. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  8329. "sami/sami": "~2.0",
  8330. "squizlabs/php_codesniffer": "~2.0"
  8331. },
  8332. "suggest": {
  8333. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  8334. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  8335. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  8336. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  8337. },
  8338. "type": "library",
  8339. "autoload": {
  8340. "files": [
  8341. "phpseclib/bootstrap.php"
  8342. ],
  8343. "psr-4": {
  8344. "phpseclib\\": "phpseclib/"
  8345. }
  8346. },
  8347. "notification-url": "https://packagist.org/downloads/",
  8348. "license": [
  8349. "MIT"
  8350. ],
  8351. "authors": [
  8352. {
  8353. "name": "Jim Wigginton",
  8354. "email": "terrafrost@php.net",
  8355. "role": "Lead Developer"
  8356. },
  8357. {
  8358. "name": "Patrick Monnerat",
  8359. "email": "pm@datasphere.ch",
  8360. "role": "Developer"
  8361. },
  8362. {
  8363. "name": "Andreas Fischer",
  8364. "email": "bantu@phpbb.com",
  8365. "role": "Developer"
  8366. },
  8367. {
  8368. "name": "Hans-Jürgen Petrich",
  8369. "email": "petrich@tronic-media.com",
  8370. "role": "Developer"
  8371. },
  8372. {
  8373. "name": "Graham Campbell",
  8374. "email": "graham@alt-three.com",
  8375. "role": "Developer"
  8376. }
  8377. ],
  8378. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  8379. "homepage": "http://phpseclib.sourceforge.net",
  8380. "keywords": [
  8381. "BigInteger",
  8382. "aes",
  8383. "asn.1",
  8384. "asn1",
  8385. "blowfish",
  8386. "crypto",
  8387. "cryptography",
  8388. "encryption",
  8389. "rsa",
  8390. "security",
  8391. "sftp",
  8392. "signature",
  8393. "signing",
  8394. "ssh",
  8395. "twofish",
  8396. "x.509",
  8397. "x509"
  8398. ],
  8399. "funding": [
  8400. {
  8401. "url": "https://github.com/terrafrost",
  8402. "type": "github"
  8403. },
  8404. {
  8405. "url": "https://www.patreon.com/phpseclib",
  8406. "type": "patreon"
  8407. },
  8408. {
  8409. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  8410. "type": "tidelift"
  8411. }
  8412. ],
  8413. "time": "2020-07-08T09:08:33+00:00"
  8414. },
  8415. {
  8416. "name": "phpspec/prophecy",
  8417. "version": "1.11.1",
  8418. "source": {
  8419. "type": "git",
  8420. "url": "https://github.com/phpspec/prophecy.git",
  8421. "reference": "b20034be5efcdab4fb60ca3a29cba2949aead160"
  8422. },
  8423. "dist": {
  8424. "type": "zip",
  8425. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/b20034be5efcdab4fb60ca3a29cba2949aead160",
  8426. "reference": "b20034be5efcdab4fb60ca3a29cba2949aead160",
  8427. "shasum": ""
  8428. },
  8429. "require": {
  8430. "doctrine/instantiator": "^1.2",
  8431. "php": "^7.2",
  8432. "phpdocumentor/reflection-docblock": "^5.0",
  8433. "sebastian/comparator": "^3.0 || ^4.0",
  8434. "sebastian/recursion-context": "^3.0 || ^4.0"
  8435. },
  8436. "require-dev": {
  8437. "phpspec/phpspec": "^6.0",
  8438. "phpunit/phpunit": "^8.0"
  8439. },
  8440. "type": "library",
  8441. "extra": {
  8442. "branch-alias": {
  8443. "dev-master": "1.11.x-dev"
  8444. }
  8445. },
  8446. "autoload": {
  8447. "psr-4": {
  8448. "Prophecy\\": "src/Prophecy"
  8449. }
  8450. },
  8451. "notification-url": "https://packagist.org/downloads/",
  8452. "license": [
  8453. "MIT"
  8454. ],
  8455. "authors": [
  8456. {
  8457. "name": "Konstantin Kudryashov",
  8458. "email": "ever.zet@gmail.com",
  8459. "homepage": "http://everzet.com"
  8460. },
  8461. {
  8462. "name": "Marcello Duarte",
  8463. "email": "marcello.duarte@gmail.com"
  8464. }
  8465. ],
  8466. "description": "Highly opinionated mocking framework for PHP 5.3+",
  8467. "homepage": "https://github.com/phpspec/prophecy",
  8468. "keywords": [
  8469. "Double",
  8470. "Dummy",
  8471. "fake",
  8472. "mock",
  8473. "spy",
  8474. "stub"
  8475. ],
  8476. "time": "2020-07-08T12:44:21+00:00"
  8477. },
  8478. {
  8479. "name": "phpunit/php-code-coverage",
  8480. "version": "7.0.10",
  8481. "source": {
  8482. "type": "git",
  8483. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8484. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf"
  8485. },
  8486. "dist": {
  8487. "type": "zip",
  8488. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f1884187926fbb755a9aaf0b3836ad3165b478bf",
  8489. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf",
  8490. "shasum": ""
  8491. },
  8492. "require": {
  8493. "ext-dom": "*",
  8494. "ext-xmlwriter": "*",
  8495. "php": "^7.2",
  8496. "phpunit/php-file-iterator": "^2.0.2",
  8497. "phpunit/php-text-template": "^1.2.1",
  8498. "phpunit/php-token-stream": "^3.1.1",
  8499. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  8500. "sebastian/environment": "^4.2.2",
  8501. "sebastian/version": "^2.0.1",
  8502. "theseer/tokenizer": "^1.1.3"
  8503. },
  8504. "require-dev": {
  8505. "phpunit/phpunit": "^8.2.2"
  8506. },
  8507. "suggest": {
  8508. "ext-xdebug": "^2.7.2"
  8509. },
  8510. "type": "library",
  8511. "extra": {
  8512. "branch-alias": {
  8513. "dev-master": "7.0-dev"
  8514. }
  8515. },
  8516. "autoload": {
  8517. "classmap": [
  8518. "src/"
  8519. ]
  8520. },
  8521. "notification-url": "https://packagist.org/downloads/",
  8522. "license": [
  8523. "BSD-3-Clause"
  8524. ],
  8525. "authors": [
  8526. {
  8527. "name": "Sebastian Bergmann",
  8528. "email": "sebastian@phpunit.de",
  8529. "role": "lead"
  8530. }
  8531. ],
  8532. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8533. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8534. "keywords": [
  8535. "coverage",
  8536. "testing",
  8537. "xunit"
  8538. ],
  8539. "time": "2019-11-20T13:55:58+00:00"
  8540. },
  8541. {
  8542. "name": "phpunit/php-file-iterator",
  8543. "version": "2.0.2",
  8544. "source": {
  8545. "type": "git",
  8546. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8547. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  8548. },
  8549. "dist": {
  8550. "type": "zip",
  8551. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  8552. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  8553. "shasum": ""
  8554. },
  8555. "require": {
  8556. "php": "^7.1"
  8557. },
  8558. "require-dev": {
  8559. "phpunit/phpunit": "^7.1"
  8560. },
  8561. "type": "library",
  8562. "extra": {
  8563. "branch-alias": {
  8564. "dev-master": "2.0.x-dev"
  8565. }
  8566. },
  8567. "autoload": {
  8568. "classmap": [
  8569. "src/"
  8570. ]
  8571. },
  8572. "notification-url": "https://packagist.org/downloads/",
  8573. "license": [
  8574. "BSD-3-Clause"
  8575. ],
  8576. "authors": [
  8577. {
  8578. "name": "Sebastian Bergmann",
  8579. "email": "sebastian@phpunit.de",
  8580. "role": "lead"
  8581. }
  8582. ],
  8583. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8584. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8585. "keywords": [
  8586. "filesystem",
  8587. "iterator"
  8588. ],
  8589. "time": "2018-09-13T20:33:42+00:00"
  8590. },
  8591. {
  8592. "name": "phpunit/php-text-template",
  8593. "version": "1.2.1",
  8594. "source": {
  8595. "type": "git",
  8596. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8597. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  8598. },
  8599. "dist": {
  8600. "type": "zip",
  8601. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  8602. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  8603. "shasum": ""
  8604. },
  8605. "require": {
  8606. "php": ">=5.3.3"
  8607. },
  8608. "type": "library",
  8609. "autoload": {
  8610. "classmap": [
  8611. "src/"
  8612. ]
  8613. },
  8614. "notification-url": "https://packagist.org/downloads/",
  8615. "license": [
  8616. "BSD-3-Clause"
  8617. ],
  8618. "authors": [
  8619. {
  8620. "name": "Sebastian Bergmann",
  8621. "email": "sebastian@phpunit.de",
  8622. "role": "lead"
  8623. }
  8624. ],
  8625. "description": "Simple template engine.",
  8626. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8627. "keywords": [
  8628. "template"
  8629. ],
  8630. "time": "2015-06-21T13:50:34+00:00"
  8631. },
  8632. {
  8633. "name": "phpunit/php-timer",
  8634. "version": "2.1.2",
  8635. "source": {
  8636. "type": "git",
  8637. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8638. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
  8639. },
  8640. "dist": {
  8641. "type": "zip",
  8642. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
  8643. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
  8644. "shasum": ""
  8645. },
  8646. "require": {
  8647. "php": "^7.1"
  8648. },
  8649. "require-dev": {
  8650. "phpunit/phpunit": "^7.0"
  8651. },
  8652. "type": "library",
  8653. "extra": {
  8654. "branch-alias": {
  8655. "dev-master": "2.1-dev"
  8656. }
  8657. },
  8658. "autoload": {
  8659. "classmap": [
  8660. "src/"
  8661. ]
  8662. },
  8663. "notification-url": "https://packagist.org/downloads/",
  8664. "license": [
  8665. "BSD-3-Clause"
  8666. ],
  8667. "authors": [
  8668. {
  8669. "name": "Sebastian Bergmann",
  8670. "email": "sebastian@phpunit.de",
  8671. "role": "lead"
  8672. }
  8673. ],
  8674. "description": "Utility class for timing",
  8675. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8676. "keywords": [
  8677. "timer"
  8678. ],
  8679. "time": "2019-06-07T04:22:29+00:00"
  8680. },
  8681. {
  8682. "name": "phpunit/php-token-stream",
  8683. "version": "3.1.1",
  8684. "source": {
  8685. "type": "git",
  8686. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  8687. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
  8688. },
  8689. "dist": {
  8690. "type": "zip",
  8691. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
  8692. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
  8693. "shasum": ""
  8694. },
  8695. "require": {
  8696. "ext-tokenizer": "*",
  8697. "php": "^7.1"
  8698. },
  8699. "require-dev": {
  8700. "phpunit/phpunit": "^7.0"
  8701. },
  8702. "type": "library",
  8703. "extra": {
  8704. "branch-alias": {
  8705. "dev-master": "3.1-dev"
  8706. }
  8707. },
  8708. "autoload": {
  8709. "classmap": [
  8710. "src/"
  8711. ]
  8712. },
  8713. "notification-url": "https://packagist.org/downloads/",
  8714. "license": [
  8715. "BSD-3-Clause"
  8716. ],
  8717. "authors": [
  8718. {
  8719. "name": "Sebastian Bergmann",
  8720. "email": "sebastian@phpunit.de"
  8721. }
  8722. ],
  8723. "description": "Wrapper around PHP's tokenizer extension.",
  8724. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  8725. "keywords": [
  8726. "tokenizer"
  8727. ],
  8728. "abandoned": true,
  8729. "time": "2019-09-17T06:23:10+00:00"
  8730. },
  8731. {
  8732. "name": "phpunit/phpunit",
  8733. "version": "8.5.8",
  8734. "source": {
  8735. "type": "git",
  8736. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8737. "reference": "34c18baa6a44f1d1fbf0338907139e9dce95b997"
  8738. },
  8739. "dist": {
  8740. "type": "zip",
  8741. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/34c18baa6a44f1d1fbf0338907139e9dce95b997",
  8742. "reference": "34c18baa6a44f1d1fbf0338907139e9dce95b997",
  8743. "shasum": ""
  8744. },
  8745. "require": {
  8746. "doctrine/instantiator": "^1.2.0",
  8747. "ext-dom": "*",
  8748. "ext-json": "*",
  8749. "ext-libxml": "*",
  8750. "ext-mbstring": "*",
  8751. "ext-xml": "*",
  8752. "ext-xmlwriter": "*",
  8753. "myclabs/deep-copy": "^1.9.1",
  8754. "phar-io/manifest": "^1.0.3",
  8755. "phar-io/version": "^2.0.1",
  8756. "php": "^7.2",
  8757. "phpspec/prophecy": "^1.8.1",
  8758. "phpunit/php-code-coverage": "^7.0.7",
  8759. "phpunit/php-file-iterator": "^2.0.2",
  8760. "phpunit/php-text-template": "^1.2.1",
  8761. "phpunit/php-timer": "^2.1.2",
  8762. "sebastian/comparator": "^3.0.2",
  8763. "sebastian/diff": "^3.0.2",
  8764. "sebastian/environment": "^4.2.2",
  8765. "sebastian/exporter": "^3.1.1",
  8766. "sebastian/global-state": "^3.0.0",
  8767. "sebastian/object-enumerator": "^3.0.3",
  8768. "sebastian/resource-operations": "^2.0.1",
  8769. "sebastian/type": "^1.1.3",
  8770. "sebastian/version": "^2.0.1"
  8771. },
  8772. "require-dev": {
  8773. "ext-pdo": "*"
  8774. },
  8775. "suggest": {
  8776. "ext-soap": "*",
  8777. "ext-xdebug": "*",
  8778. "phpunit/php-invoker": "^2.0.0"
  8779. },
  8780. "bin": [
  8781. "phpunit"
  8782. ],
  8783. "type": "library",
  8784. "extra": {
  8785. "branch-alias": {
  8786. "dev-master": "8.5-dev"
  8787. }
  8788. },
  8789. "autoload": {
  8790. "classmap": [
  8791. "src/"
  8792. ]
  8793. },
  8794. "notification-url": "https://packagist.org/downloads/",
  8795. "license": [
  8796. "BSD-3-Clause"
  8797. ],
  8798. "authors": [
  8799. {
  8800. "name": "Sebastian Bergmann",
  8801. "email": "sebastian@phpunit.de",
  8802. "role": "lead"
  8803. }
  8804. ],
  8805. "description": "The PHP Unit Testing framework.",
  8806. "homepage": "https://phpunit.de/",
  8807. "keywords": [
  8808. "phpunit",
  8809. "testing",
  8810. "xunit"
  8811. ],
  8812. "funding": [
  8813. {
  8814. "url": "https://phpunit.de/donate.html",
  8815. "type": "custom"
  8816. },
  8817. {
  8818. "url": "https://github.com/sebastianbergmann",
  8819. "type": "github"
  8820. }
  8821. ],
  8822. "time": "2020-06-22T07:06:58+00:00"
  8823. },
  8824. {
  8825. "name": "scrivo/highlight.php",
  8826. "version": "v9.18.1.2",
  8827. "source": {
  8828. "type": "git",
  8829. "url": "https://github.com/scrivo/highlight.php.git",
  8830. "reference": "efb6e445494a9458aa59b0af5edfa4bdcc6809d9"
  8831. },
  8832. "dist": {
  8833. "type": "zip",
  8834. "url": "https://api.github.com/repos/scrivo/highlight.php/zipball/efb6e445494a9458aa59b0af5edfa4bdcc6809d9",
  8835. "reference": "efb6e445494a9458aa59b0af5edfa4bdcc6809d9",
  8836. "shasum": ""
  8837. },
  8838. "require": {
  8839. "ext-json": "*",
  8840. "ext-mbstring": "*",
  8841. "php": ">=5.4"
  8842. },
  8843. "require-dev": {
  8844. "phpunit/phpunit": "^4.8|^5.7",
  8845. "sabberworm/php-css-parser": "^8.3",
  8846. "symfony/finder": "^2.8|^3.4",
  8847. "symfony/var-dumper": "^2.8|^3.4"
  8848. },
  8849. "suggest": {
  8850. "ext-dom": "Needed to make use of the features in the utilities namespace"
  8851. },
  8852. "type": "library",
  8853. "autoload": {
  8854. "psr-0": {
  8855. "Highlight\\": "",
  8856. "HighlightUtilities\\": ""
  8857. },
  8858. "files": [
  8859. "HighlightUtilities/functions.php"
  8860. ]
  8861. },
  8862. "notification-url": "https://packagist.org/downloads/",
  8863. "license": [
  8864. "BSD-3-Clause"
  8865. ],
  8866. "authors": [
  8867. {
  8868. "name": "Geert Bergman",
  8869. "homepage": "http://www.scrivo.org/",
  8870. "role": "Project Author"
  8871. },
  8872. {
  8873. "name": "Vladimir Jimenez",
  8874. "homepage": "https://allejo.io",
  8875. "role": "Maintainer"
  8876. },
  8877. {
  8878. "name": "Martin Folkers",
  8879. "homepage": "https://twobrain.io",
  8880. "role": "Contributor"
  8881. }
  8882. ],
  8883. "description": "Server side syntax highlighter that supports 185 languages. It's a PHP port of highlight.js",
  8884. "keywords": [
  8885. "code",
  8886. "highlight",
  8887. "highlight.js",
  8888. "highlight.php",
  8889. "syntax"
  8890. ],
  8891. "funding": [
  8892. {
  8893. "url": "https://github.com/allejo",
  8894. "type": "github"
  8895. }
  8896. ],
  8897. "time": "2020-08-27T03:24:44+00:00"
  8898. },
  8899. {
  8900. "name": "sebastian/code-unit-reverse-lookup",
  8901. "version": "1.0.1",
  8902. "source": {
  8903. "type": "git",
  8904. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8905. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  8906. },
  8907. "dist": {
  8908. "type": "zip",
  8909. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  8910. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  8911. "shasum": ""
  8912. },
  8913. "require": {
  8914. "php": "^5.6 || ^7.0"
  8915. },
  8916. "require-dev": {
  8917. "phpunit/phpunit": "^5.7 || ^6.0"
  8918. },
  8919. "type": "library",
  8920. "extra": {
  8921. "branch-alias": {
  8922. "dev-master": "1.0.x-dev"
  8923. }
  8924. },
  8925. "autoload": {
  8926. "classmap": [
  8927. "src/"
  8928. ]
  8929. },
  8930. "notification-url": "https://packagist.org/downloads/",
  8931. "license": [
  8932. "BSD-3-Clause"
  8933. ],
  8934. "authors": [
  8935. {
  8936. "name": "Sebastian Bergmann",
  8937. "email": "sebastian@phpunit.de"
  8938. }
  8939. ],
  8940. "description": "Looks up which function or method a line of code belongs to",
  8941. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8942. "time": "2017-03-04T06:30:41+00:00"
  8943. },
  8944. {
  8945. "name": "sebastian/comparator",
  8946. "version": "3.0.2",
  8947. "source": {
  8948. "type": "git",
  8949. "url": "https://github.com/sebastianbergmann/comparator.git",
  8950. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  8951. },
  8952. "dist": {
  8953. "type": "zip",
  8954. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  8955. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  8956. "shasum": ""
  8957. },
  8958. "require": {
  8959. "php": "^7.1",
  8960. "sebastian/diff": "^3.0",
  8961. "sebastian/exporter": "^3.1"
  8962. },
  8963. "require-dev": {
  8964. "phpunit/phpunit": "^7.1"
  8965. },
  8966. "type": "library",
  8967. "extra": {
  8968. "branch-alias": {
  8969. "dev-master": "3.0-dev"
  8970. }
  8971. },
  8972. "autoload": {
  8973. "classmap": [
  8974. "src/"
  8975. ]
  8976. },
  8977. "notification-url": "https://packagist.org/downloads/",
  8978. "license": [
  8979. "BSD-3-Clause"
  8980. ],
  8981. "authors": [
  8982. {
  8983. "name": "Jeff Welch",
  8984. "email": "whatthejeff@gmail.com"
  8985. },
  8986. {
  8987. "name": "Volker Dusch",
  8988. "email": "github@wallbash.com"
  8989. },
  8990. {
  8991. "name": "Bernhard Schussek",
  8992. "email": "bschussek@2bepublished.at"
  8993. },
  8994. {
  8995. "name": "Sebastian Bergmann",
  8996. "email": "sebastian@phpunit.de"
  8997. }
  8998. ],
  8999. "description": "Provides the functionality to compare PHP values for equality",
  9000. "homepage": "https://github.com/sebastianbergmann/comparator",
  9001. "keywords": [
  9002. "comparator",
  9003. "compare",
  9004. "equality"
  9005. ],
  9006. "time": "2018-07-12T15:12:46+00:00"
  9007. },
  9008. {
  9009. "name": "sebastian/diff",
  9010. "version": "3.0.2",
  9011. "source": {
  9012. "type": "git",
  9013. "url": "https://github.com/sebastianbergmann/diff.git",
  9014. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  9015. },
  9016. "dist": {
  9017. "type": "zip",
  9018. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  9019. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  9020. "shasum": ""
  9021. },
  9022. "require": {
  9023. "php": "^7.1"
  9024. },
  9025. "require-dev": {
  9026. "phpunit/phpunit": "^7.5 || ^8.0",
  9027. "symfony/process": "^2 || ^3.3 || ^4"
  9028. },
  9029. "type": "library",
  9030. "extra": {
  9031. "branch-alias": {
  9032. "dev-master": "3.0-dev"
  9033. }
  9034. },
  9035. "autoload": {
  9036. "classmap": [
  9037. "src/"
  9038. ]
  9039. },
  9040. "notification-url": "https://packagist.org/downloads/",
  9041. "license": [
  9042. "BSD-3-Clause"
  9043. ],
  9044. "authors": [
  9045. {
  9046. "name": "Kore Nordmann",
  9047. "email": "mail@kore-nordmann.de"
  9048. },
  9049. {
  9050. "name": "Sebastian Bergmann",
  9051. "email": "sebastian@phpunit.de"
  9052. }
  9053. ],
  9054. "description": "Diff implementation",
  9055. "homepage": "https://github.com/sebastianbergmann/diff",
  9056. "keywords": [
  9057. "diff",
  9058. "udiff",
  9059. "unidiff",
  9060. "unified diff"
  9061. ],
  9062. "time": "2019-02-04T06:01:07+00:00"
  9063. },
  9064. {
  9065. "name": "sebastian/environment",
  9066. "version": "4.2.3",
  9067. "source": {
  9068. "type": "git",
  9069. "url": "https://github.com/sebastianbergmann/environment.git",
  9070. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368"
  9071. },
  9072. "dist": {
  9073. "type": "zip",
  9074. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  9075. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  9076. "shasum": ""
  9077. },
  9078. "require": {
  9079. "php": "^7.1"
  9080. },
  9081. "require-dev": {
  9082. "phpunit/phpunit": "^7.5"
  9083. },
  9084. "suggest": {
  9085. "ext-posix": "*"
  9086. },
  9087. "type": "library",
  9088. "extra": {
  9089. "branch-alias": {
  9090. "dev-master": "4.2-dev"
  9091. }
  9092. },
  9093. "autoload": {
  9094. "classmap": [
  9095. "src/"
  9096. ]
  9097. },
  9098. "notification-url": "https://packagist.org/downloads/",
  9099. "license": [
  9100. "BSD-3-Clause"
  9101. ],
  9102. "authors": [
  9103. {
  9104. "name": "Sebastian Bergmann",
  9105. "email": "sebastian@phpunit.de"
  9106. }
  9107. ],
  9108. "description": "Provides functionality to handle HHVM/PHP environments",
  9109. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9110. "keywords": [
  9111. "Xdebug",
  9112. "environment",
  9113. "hhvm"
  9114. ],
  9115. "time": "2019-11-20T08:46:58+00:00"
  9116. },
  9117. {
  9118. "name": "sebastian/exporter",
  9119. "version": "3.1.2",
  9120. "source": {
  9121. "type": "git",
  9122. "url": "https://github.com/sebastianbergmann/exporter.git",
  9123. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  9124. },
  9125. "dist": {
  9126. "type": "zip",
  9127. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  9128. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  9129. "shasum": ""
  9130. },
  9131. "require": {
  9132. "php": "^7.0",
  9133. "sebastian/recursion-context": "^3.0"
  9134. },
  9135. "require-dev": {
  9136. "ext-mbstring": "*",
  9137. "phpunit/phpunit": "^6.0"
  9138. },
  9139. "type": "library",
  9140. "extra": {
  9141. "branch-alias": {
  9142. "dev-master": "3.1.x-dev"
  9143. }
  9144. },
  9145. "autoload": {
  9146. "classmap": [
  9147. "src/"
  9148. ]
  9149. },
  9150. "notification-url": "https://packagist.org/downloads/",
  9151. "license": [
  9152. "BSD-3-Clause"
  9153. ],
  9154. "authors": [
  9155. {
  9156. "name": "Sebastian Bergmann",
  9157. "email": "sebastian@phpunit.de"
  9158. },
  9159. {
  9160. "name": "Jeff Welch",
  9161. "email": "whatthejeff@gmail.com"
  9162. },
  9163. {
  9164. "name": "Volker Dusch",
  9165. "email": "github@wallbash.com"
  9166. },
  9167. {
  9168. "name": "Adam Harvey",
  9169. "email": "aharvey@php.net"
  9170. },
  9171. {
  9172. "name": "Bernhard Schussek",
  9173. "email": "bschussek@gmail.com"
  9174. }
  9175. ],
  9176. "description": "Provides the functionality to export PHP variables for visualization",
  9177. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  9178. "keywords": [
  9179. "export",
  9180. "exporter"
  9181. ],
  9182. "time": "2019-09-14T09:02:43+00:00"
  9183. },
  9184. {
  9185. "name": "sebastian/global-state",
  9186. "version": "3.0.0",
  9187. "source": {
  9188. "type": "git",
  9189. "url": "https://github.com/sebastianbergmann/global-state.git",
  9190. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4"
  9191. },
  9192. "dist": {
  9193. "type": "zip",
  9194. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  9195. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  9196. "shasum": ""
  9197. },
  9198. "require": {
  9199. "php": "^7.2",
  9200. "sebastian/object-reflector": "^1.1.1",
  9201. "sebastian/recursion-context": "^3.0"
  9202. },
  9203. "require-dev": {
  9204. "ext-dom": "*",
  9205. "phpunit/phpunit": "^8.0"
  9206. },
  9207. "suggest": {
  9208. "ext-uopz": "*"
  9209. },
  9210. "type": "library",
  9211. "extra": {
  9212. "branch-alias": {
  9213. "dev-master": "3.0-dev"
  9214. }
  9215. },
  9216. "autoload": {
  9217. "classmap": [
  9218. "src/"
  9219. ]
  9220. },
  9221. "notification-url": "https://packagist.org/downloads/",
  9222. "license": [
  9223. "BSD-3-Clause"
  9224. ],
  9225. "authors": [
  9226. {
  9227. "name": "Sebastian Bergmann",
  9228. "email": "sebastian@phpunit.de"
  9229. }
  9230. ],
  9231. "description": "Snapshotting of global state",
  9232. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9233. "keywords": [
  9234. "global state"
  9235. ],
  9236. "time": "2019-02-01T05:30:01+00:00"
  9237. },
  9238. {
  9239. "name": "sebastian/object-enumerator",
  9240. "version": "3.0.3",
  9241. "source": {
  9242. "type": "git",
  9243. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9244. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  9245. },
  9246. "dist": {
  9247. "type": "zip",
  9248. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  9249. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  9250. "shasum": ""
  9251. },
  9252. "require": {
  9253. "php": "^7.0",
  9254. "sebastian/object-reflector": "^1.1.1",
  9255. "sebastian/recursion-context": "^3.0"
  9256. },
  9257. "require-dev": {
  9258. "phpunit/phpunit": "^6.0"
  9259. },
  9260. "type": "library",
  9261. "extra": {
  9262. "branch-alias": {
  9263. "dev-master": "3.0.x-dev"
  9264. }
  9265. },
  9266. "autoload": {
  9267. "classmap": [
  9268. "src/"
  9269. ]
  9270. },
  9271. "notification-url": "https://packagist.org/downloads/",
  9272. "license": [
  9273. "BSD-3-Clause"
  9274. ],
  9275. "authors": [
  9276. {
  9277. "name": "Sebastian Bergmann",
  9278. "email": "sebastian@phpunit.de"
  9279. }
  9280. ],
  9281. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9282. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9283. "time": "2017-08-03T12:35:26+00:00"
  9284. },
  9285. {
  9286. "name": "sebastian/object-reflector",
  9287. "version": "1.1.1",
  9288. "source": {
  9289. "type": "git",
  9290. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9291. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  9292. },
  9293. "dist": {
  9294. "type": "zip",
  9295. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  9296. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  9297. "shasum": ""
  9298. },
  9299. "require": {
  9300. "php": "^7.0"
  9301. },
  9302. "require-dev": {
  9303. "phpunit/phpunit": "^6.0"
  9304. },
  9305. "type": "library",
  9306. "extra": {
  9307. "branch-alias": {
  9308. "dev-master": "1.1-dev"
  9309. }
  9310. },
  9311. "autoload": {
  9312. "classmap": [
  9313. "src/"
  9314. ]
  9315. },
  9316. "notification-url": "https://packagist.org/downloads/",
  9317. "license": [
  9318. "BSD-3-Clause"
  9319. ],
  9320. "authors": [
  9321. {
  9322. "name": "Sebastian Bergmann",
  9323. "email": "sebastian@phpunit.de"
  9324. }
  9325. ],
  9326. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9327. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9328. "time": "2017-03-29T09:07:27+00:00"
  9329. },
  9330. {
  9331. "name": "sebastian/recursion-context",
  9332. "version": "3.0.0",
  9333. "source": {
  9334. "type": "git",
  9335. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9336. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  9337. },
  9338. "dist": {
  9339. "type": "zip",
  9340. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  9341. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  9342. "shasum": ""
  9343. },
  9344. "require": {
  9345. "php": "^7.0"
  9346. },
  9347. "require-dev": {
  9348. "phpunit/phpunit": "^6.0"
  9349. },
  9350. "type": "library",
  9351. "extra": {
  9352. "branch-alias": {
  9353. "dev-master": "3.0.x-dev"
  9354. }
  9355. },
  9356. "autoload": {
  9357. "classmap": [
  9358. "src/"
  9359. ]
  9360. },
  9361. "notification-url": "https://packagist.org/downloads/",
  9362. "license": [
  9363. "BSD-3-Clause"
  9364. ],
  9365. "authors": [
  9366. {
  9367. "name": "Jeff Welch",
  9368. "email": "whatthejeff@gmail.com"
  9369. },
  9370. {
  9371. "name": "Sebastian Bergmann",
  9372. "email": "sebastian@phpunit.de"
  9373. },
  9374. {
  9375. "name": "Adam Harvey",
  9376. "email": "aharvey@php.net"
  9377. }
  9378. ],
  9379. "description": "Provides functionality to recursively process PHP variables",
  9380. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  9381. "time": "2017-03-03T06:23:57+00:00"
  9382. },
  9383. {
  9384. "name": "sebastian/resource-operations",
  9385. "version": "2.0.1",
  9386. "source": {
  9387. "type": "git",
  9388. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9389. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  9390. },
  9391. "dist": {
  9392. "type": "zip",
  9393. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  9394. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  9395. "shasum": ""
  9396. },
  9397. "require": {
  9398. "php": "^7.1"
  9399. },
  9400. "type": "library",
  9401. "extra": {
  9402. "branch-alias": {
  9403. "dev-master": "2.0-dev"
  9404. }
  9405. },
  9406. "autoload": {
  9407. "classmap": [
  9408. "src/"
  9409. ]
  9410. },
  9411. "notification-url": "https://packagist.org/downloads/",
  9412. "license": [
  9413. "BSD-3-Clause"
  9414. ],
  9415. "authors": [
  9416. {
  9417. "name": "Sebastian Bergmann",
  9418. "email": "sebastian@phpunit.de"
  9419. }
  9420. ],
  9421. "description": "Provides a list of PHP built-in functions that operate on resources",
  9422. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9423. "time": "2018-10-04T04:07:39+00:00"
  9424. },
  9425. {
  9426. "name": "sebastian/type",
  9427. "version": "1.1.3",
  9428. "source": {
  9429. "type": "git",
  9430. "url": "https://github.com/sebastianbergmann/type.git",
  9431. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3"
  9432. },
  9433. "dist": {
  9434. "type": "zip",
  9435. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/3aaaa15fa71d27650d62a948be022fe3b48541a3",
  9436. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3",
  9437. "shasum": ""
  9438. },
  9439. "require": {
  9440. "php": "^7.2"
  9441. },
  9442. "require-dev": {
  9443. "phpunit/phpunit": "^8.2"
  9444. },
  9445. "type": "library",
  9446. "extra": {
  9447. "branch-alias": {
  9448. "dev-master": "1.1-dev"
  9449. }
  9450. },
  9451. "autoload": {
  9452. "classmap": [
  9453. "src/"
  9454. ]
  9455. },
  9456. "notification-url": "https://packagist.org/downloads/",
  9457. "license": [
  9458. "BSD-3-Clause"
  9459. ],
  9460. "authors": [
  9461. {
  9462. "name": "Sebastian Bergmann",
  9463. "email": "sebastian@phpunit.de",
  9464. "role": "lead"
  9465. }
  9466. ],
  9467. "description": "Collection of value objects that represent the types of the PHP type system",
  9468. "homepage": "https://github.com/sebastianbergmann/type",
  9469. "time": "2019-07-02T08:10:15+00:00"
  9470. },
  9471. {
  9472. "name": "sebastian/version",
  9473. "version": "2.0.1",
  9474. "source": {
  9475. "type": "git",
  9476. "url": "https://github.com/sebastianbergmann/version.git",
  9477. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  9478. },
  9479. "dist": {
  9480. "type": "zip",
  9481. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  9482. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  9483. "shasum": ""
  9484. },
  9485. "require": {
  9486. "php": ">=5.6"
  9487. },
  9488. "type": "library",
  9489. "extra": {
  9490. "branch-alias": {
  9491. "dev-master": "2.0.x-dev"
  9492. }
  9493. },
  9494. "autoload": {
  9495. "classmap": [
  9496. "src/"
  9497. ]
  9498. },
  9499. "notification-url": "https://packagist.org/downloads/",
  9500. "license": [
  9501. "BSD-3-Clause"
  9502. ],
  9503. "authors": [
  9504. {
  9505. "name": "Sebastian Bergmann",
  9506. "email": "sebastian@phpunit.de",
  9507. "role": "lead"
  9508. }
  9509. ],
  9510. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9511. "homepage": "https://github.com/sebastianbergmann/version",
  9512. "time": "2016-10-03T07:35:21+00:00"
  9513. },
  9514. {
  9515. "name": "seld/jsonlint",
  9516. "version": "1.8.2",
  9517. "source": {
  9518. "type": "git",
  9519. "url": "https://github.com/Seldaek/jsonlint.git",
  9520. "reference": "590cfec960b77fd55e39b7d9246659e95dd6d337"
  9521. },
  9522. "dist": {
  9523. "type": "zip",
  9524. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/590cfec960b77fd55e39b7d9246659e95dd6d337",
  9525. "reference": "590cfec960b77fd55e39b7d9246659e95dd6d337",
  9526. "shasum": ""
  9527. },
  9528. "require": {
  9529. "php": "^5.3 || ^7.0 || ^8.0"
  9530. },
  9531. "require-dev": {
  9532. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  9533. },
  9534. "bin": [
  9535. "bin/jsonlint"
  9536. ],
  9537. "type": "library",
  9538. "autoload": {
  9539. "psr-4": {
  9540. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  9541. }
  9542. },
  9543. "notification-url": "https://packagist.org/downloads/",
  9544. "license": [
  9545. "MIT"
  9546. ],
  9547. "authors": [
  9548. {
  9549. "name": "Jordi Boggiano",
  9550. "email": "j.boggiano@seld.be",
  9551. "homepage": "http://seld.be"
  9552. }
  9553. ],
  9554. "description": "JSON Linter",
  9555. "keywords": [
  9556. "json",
  9557. "linter",
  9558. "parser",
  9559. "validator"
  9560. ],
  9561. "funding": [
  9562. {
  9563. "url": "https://github.com/Seldaek",
  9564. "type": "github"
  9565. },
  9566. {
  9567. "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
  9568. "type": "tidelift"
  9569. }
  9570. ],
  9571. "time": "2020-08-25T06:56:57+00:00"
  9572. },
  9573. {
  9574. "name": "seld/phar-utils",
  9575. "version": "1.1.1",
  9576. "source": {
  9577. "type": "git",
  9578. "url": "https://github.com/Seldaek/phar-utils.git",
  9579. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796"
  9580. },
  9581. "dist": {
  9582. "type": "zip",
  9583. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  9584. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  9585. "shasum": ""
  9586. },
  9587. "require": {
  9588. "php": ">=5.3"
  9589. },
  9590. "type": "library",
  9591. "extra": {
  9592. "branch-alias": {
  9593. "dev-master": "1.x-dev"
  9594. }
  9595. },
  9596. "autoload": {
  9597. "psr-4": {
  9598. "Seld\\PharUtils\\": "src/"
  9599. }
  9600. },
  9601. "notification-url": "https://packagist.org/downloads/",
  9602. "license": [
  9603. "MIT"
  9604. ],
  9605. "authors": [
  9606. {
  9607. "name": "Jordi Boggiano",
  9608. "email": "j.boggiano@seld.be"
  9609. }
  9610. ],
  9611. "description": "PHAR file format utilities, for when PHP phars you up",
  9612. "keywords": [
  9613. "phar"
  9614. ],
  9615. "time": "2020-07-07T18:42:57+00:00"
  9616. },
  9617. {
  9618. "name": "symfony/debug",
  9619. "version": "v4.4.13",
  9620. "source": {
  9621. "type": "git",
  9622. "url": "https://github.com/symfony/debug.git",
  9623. "reference": "aeb73aca16a8f1fe958230fe44e6cf4c84cbb85e"
  9624. },
  9625. "dist": {
  9626. "type": "zip",
  9627. "url": "https://api.github.com/repos/symfony/debug/zipball/aeb73aca16a8f1fe958230fe44e6cf4c84cbb85e",
  9628. "reference": "aeb73aca16a8f1fe958230fe44e6cf4c84cbb85e",
  9629. "shasum": ""
  9630. },
  9631. "require": {
  9632. "php": ">=7.1.3",
  9633. "psr/log": "~1.0",
  9634. "symfony/polyfill-php80": "^1.15"
  9635. },
  9636. "conflict": {
  9637. "symfony/http-kernel": "<3.4"
  9638. },
  9639. "require-dev": {
  9640. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  9641. },
  9642. "type": "library",
  9643. "extra": {
  9644. "branch-alias": {
  9645. "dev-master": "4.4-dev"
  9646. }
  9647. },
  9648. "autoload": {
  9649. "psr-4": {
  9650. "Symfony\\Component\\Debug\\": ""
  9651. },
  9652. "exclude-from-classmap": [
  9653. "/Tests/"
  9654. ]
  9655. },
  9656. "notification-url": "https://packagist.org/downloads/",
  9657. "license": [
  9658. "MIT"
  9659. ],
  9660. "authors": [
  9661. {
  9662. "name": "Fabien Potencier",
  9663. "email": "fabien@symfony.com"
  9664. },
  9665. {
  9666. "name": "Symfony Community",
  9667. "homepage": "https://symfony.com/contributors"
  9668. }
  9669. ],
  9670. "description": "Symfony Debug Component",
  9671. "homepage": "https://symfony.com",
  9672. "funding": [
  9673. {
  9674. "url": "https://symfony.com/sponsor",
  9675. "type": "custom"
  9676. },
  9677. {
  9678. "url": "https://github.com/fabpot",
  9679. "type": "github"
  9680. },
  9681. {
  9682. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9683. "type": "tidelift"
  9684. }
  9685. ],
  9686. "time": "2020-08-10T07:47:39+00:00"
  9687. },
  9688. {
  9689. "name": "symfony/filesystem",
  9690. "version": "v5.1.5",
  9691. "source": {
  9692. "type": "git",
  9693. "url": "https://github.com/symfony/filesystem.git",
  9694. "reference": "f7b9ed6142a34252d219801d9767dedbd711da1a"
  9695. },
  9696. "dist": {
  9697. "type": "zip",
  9698. "url": "https://api.github.com/repos/symfony/filesystem/zipball/f7b9ed6142a34252d219801d9767dedbd711da1a",
  9699. "reference": "f7b9ed6142a34252d219801d9767dedbd711da1a",
  9700. "shasum": ""
  9701. },
  9702. "require": {
  9703. "php": ">=7.2.5",
  9704. "symfony/polyfill-ctype": "~1.8"
  9705. },
  9706. "type": "library",
  9707. "extra": {
  9708. "branch-alias": {
  9709. "dev-master": "5.1-dev"
  9710. }
  9711. },
  9712. "autoload": {
  9713. "psr-4": {
  9714. "Symfony\\Component\\Filesystem\\": ""
  9715. },
  9716. "exclude-from-classmap": [
  9717. "/Tests/"
  9718. ]
  9719. },
  9720. "notification-url": "https://packagist.org/downloads/",
  9721. "license": [
  9722. "MIT"
  9723. ],
  9724. "authors": [
  9725. {
  9726. "name": "Fabien Potencier",
  9727. "email": "fabien@symfony.com"
  9728. },
  9729. {
  9730. "name": "Symfony Community",
  9731. "homepage": "https://symfony.com/contributors"
  9732. }
  9733. ],
  9734. "description": "Symfony Filesystem Component",
  9735. "homepage": "https://symfony.com",
  9736. "funding": [
  9737. {
  9738. "url": "https://symfony.com/sponsor",
  9739. "type": "custom"
  9740. },
  9741. {
  9742. "url": "https://github.com/fabpot",
  9743. "type": "github"
  9744. },
  9745. {
  9746. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9747. "type": "tidelift"
  9748. }
  9749. ],
  9750. "time": "2020-08-21T17:19:47+00:00"
  9751. },
  9752. {
  9753. "name": "theseer/tokenizer",
  9754. "version": "1.2.0",
  9755. "source": {
  9756. "type": "git",
  9757. "url": "https://github.com/theseer/tokenizer.git",
  9758. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  9759. },
  9760. "dist": {
  9761. "type": "zip",
  9762. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  9763. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  9764. "shasum": ""
  9765. },
  9766. "require": {
  9767. "ext-dom": "*",
  9768. "ext-tokenizer": "*",
  9769. "ext-xmlwriter": "*",
  9770. "php": "^7.2 || ^8.0"
  9771. },
  9772. "type": "library",
  9773. "autoload": {
  9774. "classmap": [
  9775. "src/"
  9776. ]
  9777. },
  9778. "notification-url": "https://packagist.org/downloads/",
  9779. "license": [
  9780. "BSD-3-Clause"
  9781. ],
  9782. "authors": [
  9783. {
  9784. "name": "Arne Blankerts",
  9785. "email": "arne@blankerts.de",
  9786. "role": "Developer"
  9787. }
  9788. ],
  9789. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  9790. "funding": [
  9791. {
  9792. "url": "https://github.com/theseer",
  9793. "type": "github"
  9794. }
  9795. ],
  9796. "time": "2020-07-12T23:59:07+00:00"
  9797. },
  9798. {
  9799. "name": "webmozart/assert",
  9800. "version": "1.9.1",
  9801. "source": {
  9802. "type": "git",
  9803. "url": "https://github.com/webmozart/assert.git",
  9804. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  9805. },
  9806. "dist": {
  9807. "type": "zip",
  9808. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  9809. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  9810. "shasum": ""
  9811. },
  9812. "require": {
  9813. "php": "^5.3.3 || ^7.0 || ^8.0",
  9814. "symfony/polyfill-ctype": "^1.8"
  9815. },
  9816. "conflict": {
  9817. "phpstan/phpstan": "<0.12.20",
  9818. "vimeo/psalm": "<3.9.1"
  9819. },
  9820. "require-dev": {
  9821. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  9822. },
  9823. "type": "library",
  9824. "autoload": {
  9825. "psr-4": {
  9826. "Webmozart\\Assert\\": "src/"
  9827. }
  9828. },
  9829. "notification-url": "https://packagist.org/downloads/",
  9830. "license": [
  9831. "MIT"
  9832. ],
  9833. "authors": [
  9834. {
  9835. "name": "Bernhard Schussek",
  9836. "email": "bschussek@gmail.com"
  9837. }
  9838. ],
  9839. "description": "Assertions to validate method input/output with nice error messages.",
  9840. "keywords": [
  9841. "assert",
  9842. "check",
  9843. "validate"
  9844. ],
  9845. "time": "2020-07-08T17:02:28+00:00"
  9846. }
  9847. ],
  9848. "aliases": [],
  9849. "minimum-stability": "dev",
  9850. "stability-flags": [],
  9851. "prefer-stable": true,
  9852. "prefer-lowest": false,
  9853. "platform": {
  9854. "php": "^7.2.5",
  9855. "ext-json": "*",
  9856. "ext-openssl": "*"
  9857. },
  9858. "platform-dev": [],
  9859. "plugin-api-version": "1.1.0"
  9860. }