composer.lock 297 KB

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