composer.lock 284 KB

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