composer.lock 295 KB

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