composer.lock 236 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641
  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": "5c4366635933878461bffe22a227367d",
  8. "packages": [
  9. {
  10. "name": "dnoegel/php-xdg-base-dir",
  11. "version": "0.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  15. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  20. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "php": ">=5.3.2"
  31. },
  32. "require-dev": {
  33. "phpunit/phpunit": "@stable"
  34. },
  35. "type": "project",
  36. "autoload": {
  37. "psr-4": {
  38. "XdgBaseDir\\": "src/"
  39. }
  40. },
  41. "notification-url": "https://packagist.org/downloads/",
  42. "license": [
  43. "MIT"
  44. ],
  45. "description": "implementation of xdg base directory specification for php",
  46. "time": "2014-10-24T07:27:01+00:00"
  47. },
  48. {
  49. "name": "doctrine/cache",
  50. "version": "1.10.0",
  51. "source": {
  52. "type": "git",
  53. "url": "https://github.com/doctrine/cache.git",
  54. "reference": "382e7f4db9a12dc6c19431743a2b096041bcdd62"
  55. },
  56. "dist": {
  57. "type": "zip",
  58. "url": "https://api.github.com/repos/doctrine/cache/zipball/382e7f4db9a12dc6c19431743a2b096041bcdd62",
  59. "reference": "382e7f4db9a12dc6c19431743a2b096041bcdd62",
  60. "shasum": "",
  61. "mirrors": [
  62. {
  63. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  64. "preferred": true
  65. }
  66. ]
  67. },
  68. "require": {
  69. "php": "~7.1"
  70. },
  71. "conflict": {
  72. "doctrine/common": ">2.2,<2.4"
  73. },
  74. "require-dev": {
  75. "alcaeus/mongo-php-adapter": "^1.1",
  76. "doctrine/coding-standard": "^6.0",
  77. "mongodb/mongodb": "^1.1",
  78. "phpunit/phpunit": "^7.0",
  79. "predis/predis": "~1.0"
  80. },
  81. "suggest": {
  82. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  83. },
  84. "type": "library",
  85. "extra": {
  86. "branch-alias": {
  87. "dev-master": "1.9.x-dev"
  88. }
  89. },
  90. "autoload": {
  91. "psr-4": {
  92. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  93. }
  94. },
  95. "notification-url": "https://packagist.org/downloads/",
  96. "license": [
  97. "MIT"
  98. ],
  99. "authors": [
  100. {
  101. "name": "Guilherme Blanco",
  102. "email": "guilhermeblanco@gmail.com"
  103. },
  104. {
  105. "name": "Roman Borschel",
  106. "email": "roman@code-factory.org"
  107. },
  108. {
  109. "name": "Benjamin Eberlei",
  110. "email": "kontakt@beberlei.de"
  111. },
  112. {
  113. "name": "Jonathan Wage",
  114. "email": "jonwage@gmail.com"
  115. },
  116. {
  117. "name": "Johannes Schmitt",
  118. "email": "schmittjoh@gmail.com"
  119. }
  120. ],
  121. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  122. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  123. "keywords": [
  124. "abstraction",
  125. "apcu",
  126. "cache",
  127. "caching",
  128. "couchdb",
  129. "memcached",
  130. "php",
  131. "redis",
  132. "xcache"
  133. ],
  134. "time": "2019-11-29T15:36:20+00:00"
  135. },
  136. {
  137. "name": "doctrine/dbal",
  138. "version": "v2.10.0",
  139. "source": {
  140. "type": "git",
  141. "url": "https://github.com/doctrine/dbal.git",
  142. "reference": "0c9a646775ef549eb0a213a4f9bd4381d9b4d934"
  143. },
  144. "dist": {
  145. "type": "zip",
  146. "url": "https://api.github.com/repos/doctrine/dbal/zipball/0c9a646775ef549eb0a213a4f9bd4381d9b4d934",
  147. "reference": "0c9a646775ef549eb0a213a4f9bd4381d9b4d934",
  148. "shasum": "",
  149. "mirrors": [
  150. {
  151. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  152. "preferred": true
  153. }
  154. ]
  155. },
  156. "require": {
  157. "doctrine/cache": "^1.0",
  158. "doctrine/event-manager": "^1.0",
  159. "ext-pdo": "*",
  160. "php": "^7.2"
  161. },
  162. "require-dev": {
  163. "doctrine/coding-standard": "^6.0",
  164. "jetbrains/phpstorm-stubs": "^2019.1",
  165. "phpstan/phpstan": "^0.11.3",
  166. "phpunit/phpunit": "^8.4.1",
  167. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0"
  168. },
  169. "suggest": {
  170. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  171. },
  172. "bin": [
  173. "bin/doctrine-dbal"
  174. ],
  175. "type": "library",
  176. "extra": {
  177. "branch-alias": {
  178. "dev-master": "2.10.x-dev",
  179. "dev-develop": "3.0.x-dev"
  180. }
  181. },
  182. "autoload": {
  183. "psr-4": {
  184. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  185. }
  186. },
  187. "notification-url": "https://packagist.org/downloads/",
  188. "license": [
  189. "MIT"
  190. ],
  191. "authors": [
  192. {
  193. "name": "Guilherme Blanco",
  194. "email": "guilhermeblanco@gmail.com"
  195. },
  196. {
  197. "name": "Roman Borschel",
  198. "email": "roman@code-factory.org"
  199. },
  200. {
  201. "name": "Benjamin Eberlei",
  202. "email": "kontakt@beberlei.de"
  203. },
  204. {
  205. "name": "Jonathan Wage",
  206. "email": "jonwage@gmail.com"
  207. }
  208. ],
  209. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  210. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  211. "keywords": [
  212. "abstraction",
  213. "database",
  214. "db2",
  215. "dbal",
  216. "mariadb",
  217. "mssql",
  218. "mysql",
  219. "oci8",
  220. "oracle",
  221. "pdo",
  222. "pgsql",
  223. "postgresql",
  224. "queryobject",
  225. "sasql",
  226. "sql",
  227. "sqlanywhere",
  228. "sqlite",
  229. "sqlserver",
  230. "sqlsrv"
  231. ],
  232. "time": "2019-11-03T16:50:43+00:00"
  233. },
  234. {
  235. "name": "doctrine/event-manager",
  236. "version": "1.1.0",
  237. "source": {
  238. "type": "git",
  239. "url": "https://github.com/doctrine/event-manager.git",
  240. "reference": "629572819973f13486371cb611386eb17851e85c"
  241. },
  242. "dist": {
  243. "type": "zip",
  244. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/629572819973f13486371cb611386eb17851e85c",
  245. "reference": "629572819973f13486371cb611386eb17851e85c",
  246. "shasum": "",
  247. "mirrors": [
  248. {
  249. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  250. "preferred": true
  251. }
  252. ]
  253. },
  254. "require": {
  255. "php": "^7.1"
  256. },
  257. "conflict": {
  258. "doctrine/common": "<2.9@dev"
  259. },
  260. "require-dev": {
  261. "doctrine/coding-standard": "^6.0",
  262. "phpunit/phpunit": "^7.0"
  263. },
  264. "type": "library",
  265. "extra": {
  266. "branch-alias": {
  267. "dev-master": "1.0.x-dev"
  268. }
  269. },
  270. "autoload": {
  271. "psr-4": {
  272. "Doctrine\\Common\\": "lib/Doctrine/Common"
  273. }
  274. },
  275. "notification-url": "https://packagist.org/downloads/",
  276. "license": [
  277. "MIT"
  278. ],
  279. "authors": [
  280. {
  281. "name": "Guilherme Blanco",
  282. "email": "guilhermeblanco@gmail.com"
  283. },
  284. {
  285. "name": "Roman Borschel",
  286. "email": "roman@code-factory.org"
  287. },
  288. {
  289. "name": "Benjamin Eberlei",
  290. "email": "kontakt@beberlei.de"
  291. },
  292. {
  293. "name": "Jonathan Wage",
  294. "email": "jonwage@gmail.com"
  295. },
  296. {
  297. "name": "Johannes Schmitt",
  298. "email": "schmittjoh@gmail.com"
  299. },
  300. {
  301. "name": "Marco Pivetta",
  302. "email": "ocramius@gmail.com"
  303. }
  304. ],
  305. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  306. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  307. "keywords": [
  308. "event",
  309. "event dispatcher",
  310. "event manager",
  311. "event system",
  312. "events"
  313. ],
  314. "time": "2019-11-10T09:48:07+00:00"
  315. },
  316. {
  317. "name": "doctrine/inflector",
  318. "version": "v1.3.0",
  319. "source": {
  320. "type": "git",
  321. "url": "https://github.com/doctrine/inflector.git",
  322. "reference": "5527a48b7313d15261292c149e55e26eae771b0a"
  323. },
  324. "dist": {
  325. "type": "zip",
  326. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5527a48b7313d15261292c149e55e26eae771b0a",
  327. "reference": "5527a48b7313d15261292c149e55e26eae771b0a",
  328. "shasum": "",
  329. "mirrors": [
  330. {
  331. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  332. "preferred": true
  333. }
  334. ]
  335. },
  336. "require": {
  337. "php": "^7.1"
  338. },
  339. "require-dev": {
  340. "phpunit/phpunit": "^6.2"
  341. },
  342. "type": "library",
  343. "extra": {
  344. "branch-alias": {
  345. "dev-master": "1.3.x-dev"
  346. }
  347. },
  348. "autoload": {
  349. "psr-4": {
  350. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  351. }
  352. },
  353. "notification-url": "https://packagist.org/downloads/",
  354. "license": [
  355. "MIT"
  356. ],
  357. "authors": [
  358. {
  359. "name": "Roman Borschel",
  360. "email": "roman@code-factory.org"
  361. },
  362. {
  363. "name": "Benjamin Eberlei",
  364. "email": "kontakt@beberlei.de"
  365. },
  366. {
  367. "name": "Guilherme Blanco",
  368. "email": "guilhermeblanco@gmail.com"
  369. },
  370. {
  371. "name": "Jonathan Wage",
  372. "email": "jonwage@gmail.com"
  373. },
  374. {
  375. "name": "Johannes Schmitt",
  376. "email": "schmittjoh@gmail.com"
  377. }
  378. ],
  379. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  380. "homepage": "http://www.doctrine-project.org",
  381. "keywords": [
  382. "inflection",
  383. "pluralize",
  384. "singularize",
  385. "string"
  386. ],
  387. "time": "2018-01-09T20:05:19+00:00"
  388. },
  389. {
  390. "name": "doctrine/lexer",
  391. "version": "1.1.0",
  392. "source": {
  393. "type": "git",
  394. "url": "https://github.com/doctrine/lexer.git",
  395. "reference": "e17f069ede36f7534b95adec71910ed1b49c74ea"
  396. },
  397. "dist": {
  398. "type": "zip",
  399. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e17f069ede36f7534b95adec71910ed1b49c74ea",
  400. "reference": "e17f069ede36f7534b95adec71910ed1b49c74ea",
  401. "shasum": "",
  402. "mirrors": [
  403. {
  404. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  405. "preferred": true
  406. }
  407. ]
  408. },
  409. "require": {
  410. "php": "^7.2"
  411. },
  412. "require-dev": {
  413. "doctrine/coding-standard": "^6.0",
  414. "phpstan/phpstan": "^0.11.8",
  415. "phpunit/phpunit": "^8.2"
  416. },
  417. "type": "library",
  418. "extra": {
  419. "branch-alias": {
  420. "dev-master": "1.1.x-dev"
  421. }
  422. },
  423. "autoload": {
  424. "psr-4": {
  425. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  426. }
  427. },
  428. "notification-url": "https://packagist.org/downloads/",
  429. "license": [
  430. "MIT"
  431. ],
  432. "authors": [
  433. {
  434. "name": "Guilherme Blanco",
  435. "email": "guilhermeblanco@gmail.com"
  436. },
  437. {
  438. "name": "Roman Borschel",
  439. "email": "roman@code-factory.org"
  440. },
  441. {
  442. "name": "Johannes Schmitt",
  443. "email": "schmittjoh@gmail.com"
  444. }
  445. ],
  446. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  447. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  448. "keywords": [
  449. "annotations",
  450. "docblock",
  451. "lexer",
  452. "parser",
  453. "php"
  454. ],
  455. "time": "2019-07-30T19:33:28+00:00"
  456. },
  457. {
  458. "name": "dragonmantank/cron-expression",
  459. "version": "v2.3.0",
  460. "source": {
  461. "type": "git",
  462. "url": "https://github.com/dragonmantank/cron-expression.git",
  463. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27"
  464. },
  465. "dist": {
  466. "type": "zip",
  467. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  468. "reference": "72b6fbf76adb3cf5bc0db68559b33d41219aba27",
  469. "shasum": "",
  470. "mirrors": [
  471. {
  472. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  473. "preferred": true
  474. }
  475. ]
  476. },
  477. "require": {
  478. "php": "^7.0"
  479. },
  480. "require-dev": {
  481. "phpunit/phpunit": "^6.4|^7.0"
  482. },
  483. "type": "library",
  484. "extra": {
  485. "branch-alias": {
  486. "dev-master": "2.3-dev"
  487. }
  488. },
  489. "autoload": {
  490. "psr-4": {
  491. "Cron\\": "src/Cron/"
  492. }
  493. },
  494. "notification-url": "https://packagist.org/downloads/",
  495. "license": [
  496. "MIT"
  497. ],
  498. "authors": [
  499. {
  500. "name": "Michael Dowling",
  501. "email": "mtdowling@gmail.com",
  502. "homepage": "https://github.com/mtdowling"
  503. },
  504. {
  505. "name": "Chris Tankersley",
  506. "email": "chris@ctankersley.com",
  507. "homepage": "https://github.com/dragonmantank"
  508. }
  509. ],
  510. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  511. "keywords": [
  512. "cron",
  513. "schedule"
  514. ],
  515. "time": "2019-03-31T00:38:28+00:00"
  516. },
  517. {
  518. "name": "egulias/email-validator",
  519. "version": "2.1.11",
  520. "source": {
  521. "type": "git",
  522. "url": "https://github.com/egulias/EmailValidator.git",
  523. "reference": "92dd169c32f6f55ba570c309d83f5209cefb5e23"
  524. },
  525. "dist": {
  526. "type": "zip",
  527. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/92dd169c32f6f55ba570c309d83f5209cefb5e23",
  528. "reference": "92dd169c32f6f55ba570c309d83f5209cefb5e23",
  529. "shasum": "",
  530. "mirrors": [
  531. {
  532. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  533. "preferred": true
  534. }
  535. ]
  536. },
  537. "require": {
  538. "doctrine/lexer": "^1.0.1",
  539. "php": ">= 5.5"
  540. },
  541. "require-dev": {
  542. "dominicsayers/isemail": "dev-master",
  543. "phpunit/phpunit": "^4.8.35||^5.7||^6.0",
  544. "satooshi/php-coveralls": "^1.0.1",
  545. "symfony/phpunit-bridge": "^4.4@dev"
  546. },
  547. "suggest": {
  548. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  549. },
  550. "type": "library",
  551. "extra": {
  552. "branch-alias": {
  553. "dev-master": "2.1.x-dev"
  554. }
  555. },
  556. "autoload": {
  557. "psr-4": {
  558. "Egulias\\EmailValidator\\": "EmailValidator"
  559. }
  560. },
  561. "notification-url": "https://packagist.org/downloads/",
  562. "license": [
  563. "MIT"
  564. ],
  565. "authors": [
  566. {
  567. "name": "Eduardo Gulias Davis"
  568. }
  569. ],
  570. "description": "A library for validating emails against several RFCs",
  571. "homepage": "https://github.com/egulias/EmailValidator",
  572. "keywords": [
  573. "email",
  574. "emailvalidation",
  575. "emailvalidator",
  576. "validation",
  577. "validator"
  578. ],
  579. "time": "2019-08-13T17:33:27+00:00"
  580. },
  581. {
  582. "name": "erusev/parsedown",
  583. "version": "1.7.3",
  584. "source": {
  585. "type": "git",
  586. "url": "https://github.com/erusev/parsedown.git",
  587. "reference": "6d893938171a817f4e9bc9e86f2da1e370b7bcd7"
  588. },
  589. "dist": {
  590. "type": "zip",
  591. "url": "https://api.github.com/repos/erusev/parsedown/zipball/6d893938171a817f4e9bc9e86f2da1e370b7bcd7",
  592. "reference": "6d893938171a817f4e9bc9e86f2da1e370b7bcd7",
  593. "shasum": "",
  594. "mirrors": [
  595. {
  596. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  597. "preferred": true
  598. }
  599. ]
  600. },
  601. "require": {
  602. "ext-mbstring": "*",
  603. "php": ">=5.3.0"
  604. },
  605. "require-dev": {
  606. "phpunit/phpunit": "^4.8.35"
  607. },
  608. "type": "library",
  609. "autoload": {
  610. "psr-0": {
  611. "Parsedown": ""
  612. }
  613. },
  614. "notification-url": "https://packagist.org/downloads/",
  615. "license": [
  616. "MIT"
  617. ],
  618. "authors": [
  619. {
  620. "name": "Emanuil Rusev",
  621. "email": "hello@erusev.com",
  622. "homepage": "http://erusev.com"
  623. }
  624. ],
  625. "description": "Parser for Markdown.",
  626. "homepage": "http://parsedown.org",
  627. "keywords": [
  628. "markdown",
  629. "parser"
  630. ],
  631. "time": "2019-03-17T18:48:37+00:00"
  632. },
  633. {
  634. "name": "fideloper/proxy",
  635. "version": "4.2.1",
  636. "source": {
  637. "type": "git",
  638. "url": "https://github.com/fideloper/TrustedProxy.git",
  639. "reference": "03085e58ec7bee24773fa5a8850751a6e61a7e8a"
  640. },
  641. "dist": {
  642. "type": "zip",
  643. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/03085e58ec7bee24773fa5a8850751a6e61a7e8a",
  644. "reference": "03085e58ec7bee24773fa5a8850751a6e61a7e8a",
  645. "shasum": "",
  646. "mirrors": [
  647. {
  648. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  649. "preferred": true
  650. }
  651. ]
  652. },
  653. "require": {
  654. "illuminate/contracts": "^5.0|^6.0|^7.0",
  655. "php": ">=5.4.0"
  656. },
  657. "require-dev": {
  658. "illuminate/http": "^5.0|^6.0|^7.0",
  659. "mockery/mockery": "^1.0",
  660. "phpunit/phpunit": "^6.0"
  661. },
  662. "type": "library",
  663. "extra": {
  664. "laravel": {
  665. "providers": [
  666. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  667. ]
  668. }
  669. },
  670. "autoload": {
  671. "psr-4": {
  672. "Fideloper\\Proxy\\": "src/"
  673. }
  674. },
  675. "notification-url": "https://packagist.org/downloads/",
  676. "license": [
  677. "MIT"
  678. ],
  679. "authors": [
  680. {
  681. "name": "Chris Fidao",
  682. "email": "fideloper@gmail.com"
  683. }
  684. ],
  685. "description": "Set trusted proxies for Laravel",
  686. "keywords": [
  687. "load balancing",
  688. "proxy",
  689. "trusted proxy"
  690. ],
  691. "time": "2019-09-03T16:45:42+00:00"
  692. },
  693. {
  694. "name": "guzzlehttp/guzzle",
  695. "version": "6.3.3",
  696. "source": {
  697. "type": "git",
  698. "url": "https://github.com/guzzle/guzzle.git",
  699. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  700. },
  701. "dist": {
  702. "type": "zip",
  703. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  704. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  705. "shasum": "",
  706. "mirrors": [
  707. {
  708. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  709. "preferred": true
  710. }
  711. ]
  712. },
  713. "require": {
  714. "guzzlehttp/promises": "^1.0",
  715. "guzzlehttp/psr7": "^1.4",
  716. "php": ">=5.5"
  717. },
  718. "require-dev": {
  719. "ext-curl": "*",
  720. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  721. "psr/log": "^1.0"
  722. },
  723. "suggest": {
  724. "psr/log": "Required for using the Log middleware"
  725. },
  726. "type": "library",
  727. "extra": {
  728. "branch-alias": {
  729. "dev-master": "6.3-dev"
  730. }
  731. },
  732. "autoload": {
  733. "files": [
  734. "src/functions_include.php"
  735. ],
  736. "psr-4": {
  737. "GuzzleHttp\\": "src/"
  738. }
  739. },
  740. "notification-url": "https://packagist.org/downloads/",
  741. "license": [
  742. "MIT"
  743. ],
  744. "authors": [
  745. {
  746. "name": "Michael Dowling",
  747. "email": "mtdowling@gmail.com",
  748. "homepage": "https://github.com/mtdowling"
  749. }
  750. ],
  751. "description": "Guzzle is a PHP HTTP client library",
  752. "homepage": "http://guzzlephp.org/",
  753. "keywords": [
  754. "client",
  755. "curl",
  756. "framework",
  757. "http",
  758. "http client",
  759. "rest",
  760. "web service"
  761. ],
  762. "time": "2018-04-22T15:46:56+00:00"
  763. },
  764. {
  765. "name": "guzzlehttp/promises",
  766. "version": "v1.3.1",
  767. "source": {
  768. "type": "git",
  769. "url": "https://github.com/guzzle/promises.git",
  770. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  771. },
  772. "dist": {
  773. "type": "zip",
  774. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  775. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  776. "shasum": "",
  777. "mirrors": [
  778. {
  779. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  780. "preferred": true
  781. }
  782. ]
  783. },
  784. "require": {
  785. "php": ">=5.5.0"
  786. },
  787. "require-dev": {
  788. "phpunit/phpunit": "^4.0"
  789. },
  790. "type": "library",
  791. "extra": {
  792. "branch-alias": {
  793. "dev-master": "1.4-dev"
  794. }
  795. },
  796. "autoload": {
  797. "psr-4": {
  798. "GuzzleHttp\\Promise\\": "src/"
  799. },
  800. "files": [
  801. "src/functions_include.php"
  802. ]
  803. },
  804. "notification-url": "https://packagist.org/downloads/",
  805. "license": [
  806. "MIT"
  807. ],
  808. "authors": [
  809. {
  810. "name": "Michael Dowling",
  811. "email": "mtdowling@gmail.com",
  812. "homepage": "https://github.com/mtdowling"
  813. }
  814. ],
  815. "description": "Guzzle promises library",
  816. "keywords": [
  817. "promise"
  818. ],
  819. "time": "2016-12-20T10:07:11+00:00"
  820. },
  821. {
  822. "name": "guzzlehttp/psr7",
  823. "version": "1.6.1",
  824. "source": {
  825. "type": "git",
  826. "url": "https://github.com/guzzle/psr7.git",
  827. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  828. },
  829. "dist": {
  830. "type": "zip",
  831. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  832. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  833. "shasum": "",
  834. "mirrors": [
  835. {
  836. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  837. "preferred": true
  838. }
  839. ]
  840. },
  841. "require": {
  842. "php": ">=5.4.0",
  843. "psr/http-message": "~1.0",
  844. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  845. },
  846. "provide": {
  847. "psr/http-message-implementation": "1.0"
  848. },
  849. "require-dev": {
  850. "ext-zlib": "*",
  851. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  852. },
  853. "suggest": {
  854. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  855. },
  856. "type": "library",
  857. "extra": {
  858. "branch-alias": {
  859. "dev-master": "1.6-dev"
  860. }
  861. },
  862. "autoload": {
  863. "psr-4": {
  864. "GuzzleHttp\\Psr7\\": "src/"
  865. },
  866. "files": [
  867. "src/functions_include.php"
  868. ]
  869. },
  870. "notification-url": "https://packagist.org/downloads/",
  871. "license": [
  872. "MIT"
  873. ],
  874. "authors": [
  875. {
  876. "name": "Michael Dowling",
  877. "email": "mtdowling@gmail.com",
  878. "homepage": "https://github.com/mtdowling"
  879. },
  880. {
  881. "name": "Tobias Schultze",
  882. "homepage": "https://github.com/Tobion"
  883. }
  884. ],
  885. "description": "PSR-7 message implementation that also provides common utility methods",
  886. "keywords": [
  887. "http",
  888. "message",
  889. "psr-7",
  890. "request",
  891. "response",
  892. "stream",
  893. "uri",
  894. "url"
  895. ],
  896. "time": "2019-07-01T23:21:34+00:00"
  897. },
  898. {
  899. "name": "jakub-onderka/php-console-color",
  900. "version": "v0.2",
  901. "source": {
  902. "type": "git",
  903. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  904. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  905. },
  906. "dist": {
  907. "type": "zip",
  908. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  909. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  910. "shasum": "",
  911. "mirrors": [
  912. {
  913. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  914. "preferred": true
  915. }
  916. ]
  917. },
  918. "require": {
  919. "php": ">=5.4.0"
  920. },
  921. "require-dev": {
  922. "jakub-onderka/php-code-style": "1.0",
  923. "jakub-onderka/php-parallel-lint": "1.0",
  924. "jakub-onderka/php-var-dump-check": "0.*",
  925. "phpunit/phpunit": "~4.3",
  926. "squizlabs/php_codesniffer": "1.*"
  927. },
  928. "type": "library",
  929. "autoload": {
  930. "psr-4": {
  931. "JakubOnderka\\PhpConsoleColor\\": "src/"
  932. }
  933. },
  934. "notification-url": "https://packagist.org/downloads/",
  935. "license": [
  936. "BSD-2-Clause"
  937. ],
  938. "authors": [
  939. {
  940. "name": "Jakub Onderka",
  941. "email": "jakub.onderka@gmail.com"
  942. }
  943. ],
  944. "time": "2018-09-29T17:23:10+00:00"
  945. },
  946. {
  947. "name": "jakub-onderka/php-console-highlighter",
  948. "version": "v0.4",
  949. "source": {
  950. "type": "git",
  951. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  952. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  953. },
  954. "dist": {
  955. "type": "zip",
  956. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  957. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  958. "shasum": "",
  959. "mirrors": [
  960. {
  961. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  962. "preferred": true
  963. }
  964. ]
  965. },
  966. "require": {
  967. "ext-tokenizer": "*",
  968. "jakub-onderka/php-console-color": "~0.2",
  969. "php": ">=5.4.0"
  970. },
  971. "require-dev": {
  972. "jakub-onderka/php-code-style": "~1.0",
  973. "jakub-onderka/php-parallel-lint": "~1.0",
  974. "jakub-onderka/php-var-dump-check": "~0.1",
  975. "phpunit/phpunit": "~4.0",
  976. "squizlabs/php_codesniffer": "~1.5"
  977. },
  978. "type": "library",
  979. "autoload": {
  980. "psr-4": {
  981. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  982. }
  983. },
  984. "notification-url": "https://packagist.org/downloads/",
  985. "license": [
  986. "MIT"
  987. ],
  988. "authors": [
  989. {
  990. "name": "Jakub Onderka",
  991. "email": "acci@acci.cz",
  992. "homepage": "http://www.acci.cz/"
  993. }
  994. ],
  995. "description": "Highlight PHP code in terminal",
  996. "time": "2018-09-29T18:48:56+00:00"
  997. },
  998. {
  999. "name": "kitetail/zttp",
  1000. "version": "v0.6.0",
  1001. "source": {
  1002. "type": "git",
  1003. "url": "https://github.com/kitetail/zttp.git",
  1004. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435"
  1005. },
  1006. "dist": {
  1007. "type": "zip",
  1008. "url": "https://api.github.com/repos/kitetail/zttp/zipball/92662d7f9025b4c9a0b8a585e31810461fcca435",
  1009. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435",
  1010. "shasum": "",
  1011. "mirrors": [
  1012. {
  1013. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1014. "preferred": true
  1015. }
  1016. ]
  1017. },
  1018. "require": {
  1019. "guzzlehttp/guzzle": "^6.0",
  1020. "php": ">=7.0",
  1021. "tightenco/collect": "^5.4"
  1022. },
  1023. "require-dev": {
  1024. "laravel/lumen-framework": "5.5.*",
  1025. "phpunit/phpunit": "^6.0"
  1026. },
  1027. "type": "library",
  1028. "autoload": {
  1029. "files": [
  1030. "src/Zttp.php"
  1031. ]
  1032. },
  1033. "notification-url": "https://packagist.org/downloads/",
  1034. "license": [
  1035. "MIT"
  1036. ],
  1037. "authors": [
  1038. {
  1039. "name": "Adam Wathan",
  1040. "email": "adam.wathan@gmail.com"
  1041. }
  1042. ],
  1043. "description": "A developer-experience focused HTTP client, optimized for most common use cases.",
  1044. "keywords": [
  1045. "Guzzle",
  1046. "http"
  1047. ],
  1048. "time": "2019-06-10T12:18:52+00:00"
  1049. },
  1050. {
  1051. "name": "laravel/framework",
  1052. "version": "v5.8.35",
  1053. "source": {
  1054. "type": "git",
  1055. "url": "https://github.com/laravel/framework.git",
  1056. "reference": "5a9e4d241a8b815e16c9d2151e908992c38db197"
  1057. },
  1058. "dist": {
  1059. "type": "zip",
  1060. "url": "https://api.github.com/repos/laravel/framework/zipball/5a9e4d241a8b815e16c9d2151e908992c38db197",
  1061. "reference": "5a9e4d241a8b815e16c9d2151e908992c38db197",
  1062. "shasum": "",
  1063. "mirrors": [
  1064. {
  1065. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1066. "preferred": true
  1067. }
  1068. ]
  1069. },
  1070. "require": {
  1071. "doctrine/inflector": "^1.1",
  1072. "dragonmantank/cron-expression": "^2.0",
  1073. "egulias/email-validator": "^2.0",
  1074. "erusev/parsedown": "^1.7",
  1075. "ext-json": "*",
  1076. "ext-mbstring": "*",
  1077. "ext-openssl": "*",
  1078. "league/flysystem": "^1.0.8",
  1079. "monolog/monolog": "^1.12",
  1080. "nesbot/carbon": "^1.26.3 || ^2.0",
  1081. "opis/closure": "^3.1",
  1082. "php": "^7.1.3",
  1083. "psr/container": "^1.0",
  1084. "psr/simple-cache": "^1.0",
  1085. "ramsey/uuid": "^3.7",
  1086. "swiftmailer/swiftmailer": "^6.0",
  1087. "symfony/console": "^4.2",
  1088. "symfony/debug": "^4.2",
  1089. "symfony/finder": "^4.2",
  1090. "symfony/http-foundation": "^4.2",
  1091. "symfony/http-kernel": "^4.2",
  1092. "symfony/process": "^4.2",
  1093. "symfony/routing": "^4.2",
  1094. "symfony/var-dumper": "^4.2",
  1095. "tijsverkoyen/css-to-inline-styles": "^2.2.1",
  1096. "vlucas/phpdotenv": "^3.3"
  1097. },
  1098. "conflict": {
  1099. "tightenco/collect": "<5.5.33"
  1100. },
  1101. "replace": {
  1102. "illuminate/auth": "self.version",
  1103. "illuminate/broadcasting": "self.version",
  1104. "illuminate/bus": "self.version",
  1105. "illuminate/cache": "self.version",
  1106. "illuminate/config": "self.version",
  1107. "illuminate/console": "self.version",
  1108. "illuminate/container": "self.version",
  1109. "illuminate/contracts": "self.version",
  1110. "illuminate/cookie": "self.version",
  1111. "illuminate/database": "self.version",
  1112. "illuminate/encryption": "self.version",
  1113. "illuminate/events": "self.version",
  1114. "illuminate/filesystem": "self.version",
  1115. "illuminate/hashing": "self.version",
  1116. "illuminate/http": "self.version",
  1117. "illuminate/log": "self.version",
  1118. "illuminate/mail": "self.version",
  1119. "illuminate/notifications": "self.version",
  1120. "illuminate/pagination": "self.version",
  1121. "illuminate/pipeline": "self.version",
  1122. "illuminate/queue": "self.version",
  1123. "illuminate/redis": "self.version",
  1124. "illuminate/routing": "self.version",
  1125. "illuminate/session": "self.version",
  1126. "illuminate/support": "self.version",
  1127. "illuminate/translation": "self.version",
  1128. "illuminate/validation": "self.version",
  1129. "illuminate/view": "self.version"
  1130. },
  1131. "require-dev": {
  1132. "aws/aws-sdk-php": "^3.0",
  1133. "doctrine/dbal": "^2.6",
  1134. "filp/whoops": "^2.1.4",
  1135. "guzzlehttp/guzzle": "^6.3",
  1136. "league/flysystem-cached-adapter": "^1.0",
  1137. "mockery/mockery": "^1.0",
  1138. "moontoast/math": "^1.1",
  1139. "orchestra/testbench-core": "3.8.*",
  1140. "pda/pheanstalk": "^4.0",
  1141. "phpunit/phpunit": "^7.5|^8.0",
  1142. "predis/predis": "^1.1.1",
  1143. "symfony/css-selector": "^4.2",
  1144. "symfony/dom-crawler": "^4.2",
  1145. "true/punycode": "^2.1"
  1146. },
  1147. "suggest": {
  1148. "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (^3.0).",
  1149. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  1150. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1151. "ext-pcntl": "Required to use all features of the queue worker.",
  1152. "ext-posix": "Required to use all features of the queue worker.",
  1153. "filp/whoops": "Required for friendly error pages in development (^2.1.4).",
  1154. "fzaninotto/faker": "Required to use the eloquent factory builder (^1.4).",
  1155. "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (^6.0).",
  1156. "laravel/tinker": "Required to use the tinker console command (^1.0).",
  1157. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1158. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1159. "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (^1.0).",
  1160. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1161. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  1162. "nexmo/client": "Required to use the Nexmo transport (^1.0).",
  1163. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1164. "predis/predis": "Required to use the redis cache and queue drivers (^1.0).",
  1165. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^3.0).",
  1166. "symfony/css-selector": "Required to use some of the crawler integration testing tools (^4.2).",
  1167. "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (^4.2).",
  1168. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^1.1).",
  1169. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1170. },
  1171. "type": "library",
  1172. "extra": {
  1173. "branch-alias": {
  1174. "dev-master": "5.8-dev"
  1175. }
  1176. },
  1177. "autoload": {
  1178. "files": [
  1179. "src/Illuminate/Foundation/helpers.php",
  1180. "src/Illuminate/Support/helpers.php"
  1181. ],
  1182. "psr-4": {
  1183. "Illuminate\\": "src/Illuminate/"
  1184. }
  1185. },
  1186. "notification-url": "https://packagist.org/downloads/",
  1187. "license": [
  1188. "MIT"
  1189. ],
  1190. "authors": [
  1191. {
  1192. "name": "Taylor Otwell",
  1193. "email": "taylor@laravel.com"
  1194. }
  1195. ],
  1196. "description": "The Laravel Framework.",
  1197. "homepage": "https://laravel.com",
  1198. "keywords": [
  1199. "framework",
  1200. "laravel"
  1201. ],
  1202. "time": "2019-09-03T16:44:30+00:00"
  1203. },
  1204. {
  1205. "name": "laravel/tinker",
  1206. "version": "v1.0.10",
  1207. "source": {
  1208. "type": "git",
  1209. "url": "https://github.com/laravel/tinker.git",
  1210. "reference": "ad571aacbac1539c30d480908f9d0c9614eaf1a7"
  1211. },
  1212. "dist": {
  1213. "type": "zip",
  1214. "url": "https://api.github.com/repos/laravel/tinker/zipball/ad571aacbac1539c30d480908f9d0c9614eaf1a7",
  1215. "reference": "ad571aacbac1539c30d480908f9d0c9614eaf1a7",
  1216. "shasum": "",
  1217. "mirrors": [
  1218. {
  1219. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1220. "preferred": true
  1221. }
  1222. ]
  1223. },
  1224. "require": {
  1225. "illuminate/console": "~5.1|^6.0",
  1226. "illuminate/contracts": "~5.1|^6.0",
  1227. "illuminate/support": "~5.1|^6.0",
  1228. "php": ">=5.5.9",
  1229. "psy/psysh": "0.7.*|0.8.*|0.9.*",
  1230. "symfony/var-dumper": "~3.0|~4.0"
  1231. },
  1232. "require-dev": {
  1233. "phpunit/phpunit": "~4.0|~5.0"
  1234. },
  1235. "suggest": {
  1236. "illuminate/database": "The Illuminate Database package (~5.1)."
  1237. },
  1238. "type": "library",
  1239. "extra": {
  1240. "branch-alias": {
  1241. "dev-master": "1.0-dev"
  1242. },
  1243. "laravel": {
  1244. "providers": [
  1245. "Laravel\\Tinker\\TinkerServiceProvider"
  1246. ]
  1247. }
  1248. },
  1249. "autoload": {
  1250. "psr-4": {
  1251. "Laravel\\Tinker\\": "src/"
  1252. }
  1253. },
  1254. "notification-url": "https://packagist.org/downloads/",
  1255. "license": [
  1256. "MIT"
  1257. ],
  1258. "authors": [
  1259. {
  1260. "name": "Taylor Otwell",
  1261. "email": "taylor@laravel.com"
  1262. }
  1263. ],
  1264. "description": "Powerful REPL for the Laravel framework.",
  1265. "keywords": [
  1266. "REPL",
  1267. "Tinker",
  1268. "laravel",
  1269. "psysh"
  1270. ],
  1271. "time": "2019-08-07T15:10:45+00:00"
  1272. },
  1273. {
  1274. "name": "league/flysystem",
  1275. "version": "1.0.57",
  1276. "source": {
  1277. "type": "git",
  1278. "url": "https://github.com/thephpleague/flysystem.git",
  1279. "reference": "0e9db7f0b96b9f12dcf6f65bc34b72b1a30ea55a"
  1280. },
  1281. "dist": {
  1282. "type": "zip",
  1283. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/0e9db7f0b96b9f12dcf6f65bc34b72b1a30ea55a",
  1284. "reference": "0e9db7f0b96b9f12dcf6f65bc34b72b1a30ea55a",
  1285. "shasum": "",
  1286. "mirrors": [
  1287. {
  1288. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1289. "preferred": true
  1290. }
  1291. ]
  1292. },
  1293. "require": {
  1294. "ext-fileinfo": "*",
  1295. "php": ">=5.5.9"
  1296. },
  1297. "conflict": {
  1298. "league/flysystem-sftp": "<1.0.6"
  1299. },
  1300. "require-dev": {
  1301. "phpspec/phpspec": "^3.4",
  1302. "phpunit/phpunit": "^5.7.10"
  1303. },
  1304. "suggest": {
  1305. "ext-fileinfo": "Required for MimeType",
  1306. "ext-ftp": "Allows you to use FTP server storage",
  1307. "ext-openssl": "Allows you to use FTPS server storage",
  1308. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1309. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1310. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1311. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1312. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1313. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1314. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1315. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1316. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1317. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1318. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1319. },
  1320. "type": "library",
  1321. "extra": {
  1322. "branch-alias": {
  1323. "dev-master": "1.1-dev"
  1324. }
  1325. },
  1326. "autoload": {
  1327. "psr-4": {
  1328. "League\\Flysystem\\": "src/"
  1329. }
  1330. },
  1331. "notification-url": "https://packagist.org/downloads/",
  1332. "license": [
  1333. "MIT"
  1334. ],
  1335. "authors": [
  1336. {
  1337. "name": "Frank de Jonge",
  1338. "email": "info@frenky.net"
  1339. }
  1340. ],
  1341. "description": "Filesystem abstraction: Many filesystems, one API.",
  1342. "keywords": [
  1343. "Cloud Files",
  1344. "WebDAV",
  1345. "abstraction",
  1346. "aws",
  1347. "cloud",
  1348. "copy.com",
  1349. "dropbox",
  1350. "file systems",
  1351. "files",
  1352. "filesystem",
  1353. "filesystems",
  1354. "ftp",
  1355. "rackspace",
  1356. "remote",
  1357. "s3",
  1358. "sftp",
  1359. "storage"
  1360. ],
  1361. "time": "2019-10-16T21:01:05+00:00"
  1362. },
  1363. {
  1364. "name": "maatwebsite/excel",
  1365. "version": "3.1.17",
  1366. "source": {
  1367. "type": "git",
  1368. "url": "https://github.com/Maatwebsite/Laravel-Excel.git",
  1369. "reference": "bd377ad37b285d9bc25c9adca360e4392041dea6"
  1370. },
  1371. "dist": {
  1372. "type": "zip",
  1373. "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/bd377ad37b285d9bc25c9adca360e4392041dea6",
  1374. "reference": "bd377ad37b285d9bc25c9adca360e4392041dea6",
  1375. "shasum": "",
  1376. "mirrors": [
  1377. {
  1378. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1379. "preferred": true
  1380. }
  1381. ]
  1382. },
  1383. "require": {
  1384. "ext-json": "*",
  1385. "illuminate/support": "5.5.*|5.6.*|5.7.*|5.8.*|^6.0",
  1386. "opis/closure": "^3.1",
  1387. "php": "^7.0",
  1388. "phpoffice/phpspreadsheet": "^1.6"
  1389. },
  1390. "require-dev": {
  1391. "mockery/mockery": "^1.1",
  1392. "orchestra/database": "^4.0",
  1393. "orchestra/testbench": "^4.0",
  1394. "phpunit/phpunit": "^8.0",
  1395. "predis/predis": "^1.1"
  1396. },
  1397. "type": "library",
  1398. "extra": {
  1399. "laravel": {
  1400. "providers": [
  1401. "Maatwebsite\\Excel\\ExcelServiceProvider"
  1402. ],
  1403. "aliases": {
  1404. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  1405. }
  1406. }
  1407. },
  1408. "autoload": {
  1409. "psr-4": {
  1410. "Maatwebsite\\Excel\\": "src/"
  1411. }
  1412. },
  1413. "notification-url": "https://packagist.org/downloads/",
  1414. "license": [
  1415. "MIT"
  1416. ],
  1417. "authors": [
  1418. {
  1419. "name": "Patrick Brouwers",
  1420. "email": "patrick@maatwebsite.nl"
  1421. }
  1422. ],
  1423. "description": "Supercharged Excel exports and imports in Laravel",
  1424. "keywords": [
  1425. "PHPExcel",
  1426. "batch",
  1427. "csv",
  1428. "excel",
  1429. "export",
  1430. "import",
  1431. "laravel",
  1432. "php",
  1433. "phpspreadsheet"
  1434. ],
  1435. "time": "2019-09-04T19:28:20+00:00"
  1436. },
  1437. {
  1438. "name": "markbaker/complex",
  1439. "version": "1.4.7",
  1440. "source": {
  1441. "type": "git",
  1442. "url": "https://github.com/MarkBaker/PHPComplex.git",
  1443. "reference": "1ea674a8308baf547cbcbd30c5fcd6d301b7c000"
  1444. },
  1445. "dist": {
  1446. "type": "zip",
  1447. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/1ea674a8308baf547cbcbd30c5fcd6d301b7c000",
  1448. "reference": "1ea674a8308baf547cbcbd30c5fcd6d301b7c000",
  1449. "shasum": "",
  1450. "mirrors": [
  1451. {
  1452. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1453. "preferred": true
  1454. }
  1455. ]
  1456. },
  1457. "require": {
  1458. "php": "^5.6.0|^7.0.0"
  1459. },
  1460. "require-dev": {
  1461. "dealerdirect/phpcodesniffer-composer-installer": "^0.4.3",
  1462. "phpcompatibility/php-compatibility": "^8.0",
  1463. "phpdocumentor/phpdocumentor": "2.*",
  1464. "phploc/phploc": "2.*",
  1465. "phpmd/phpmd": "2.*",
  1466. "phpunit/phpunit": "^4.8.35|^5.4.0",
  1467. "sebastian/phpcpd": "2.*",
  1468. "squizlabs/php_codesniffer": "^3.3.0"
  1469. },
  1470. "type": "library",
  1471. "autoload": {
  1472. "psr-4": {
  1473. "Complex\\": "classes/src/"
  1474. },
  1475. "files": [
  1476. "classes/src/functions/abs.php",
  1477. "classes/src/functions/acos.php",
  1478. "classes/src/functions/acosh.php",
  1479. "classes/src/functions/acot.php",
  1480. "classes/src/functions/acoth.php",
  1481. "classes/src/functions/acsc.php",
  1482. "classes/src/functions/acsch.php",
  1483. "classes/src/functions/argument.php",
  1484. "classes/src/functions/asec.php",
  1485. "classes/src/functions/asech.php",
  1486. "classes/src/functions/asin.php",
  1487. "classes/src/functions/asinh.php",
  1488. "classes/src/functions/atan.php",
  1489. "classes/src/functions/atanh.php",
  1490. "classes/src/functions/conjugate.php",
  1491. "classes/src/functions/cos.php",
  1492. "classes/src/functions/cosh.php",
  1493. "classes/src/functions/cot.php",
  1494. "classes/src/functions/coth.php",
  1495. "classes/src/functions/csc.php",
  1496. "classes/src/functions/csch.php",
  1497. "classes/src/functions/exp.php",
  1498. "classes/src/functions/inverse.php",
  1499. "classes/src/functions/ln.php",
  1500. "classes/src/functions/log2.php",
  1501. "classes/src/functions/log10.php",
  1502. "classes/src/functions/negative.php",
  1503. "classes/src/functions/pow.php",
  1504. "classes/src/functions/rho.php",
  1505. "classes/src/functions/sec.php",
  1506. "classes/src/functions/sech.php",
  1507. "classes/src/functions/sin.php",
  1508. "classes/src/functions/sinh.php",
  1509. "classes/src/functions/sqrt.php",
  1510. "classes/src/functions/tan.php",
  1511. "classes/src/functions/tanh.php",
  1512. "classes/src/functions/theta.php",
  1513. "classes/src/operations/add.php",
  1514. "classes/src/operations/subtract.php",
  1515. "classes/src/operations/multiply.php",
  1516. "classes/src/operations/divideby.php",
  1517. "classes/src/operations/divideinto.php"
  1518. ]
  1519. },
  1520. "notification-url": "https://packagist.org/downloads/",
  1521. "license": [
  1522. "MIT"
  1523. ],
  1524. "authors": [
  1525. {
  1526. "name": "Mark Baker",
  1527. "email": "mark@lange.demon.co.uk"
  1528. }
  1529. ],
  1530. "description": "PHP Class for working with complex numbers",
  1531. "homepage": "https://github.com/MarkBaker/PHPComplex",
  1532. "keywords": [
  1533. "complex",
  1534. "mathematics"
  1535. ],
  1536. "time": "2018-10-13T23:28:42+00:00"
  1537. },
  1538. {
  1539. "name": "markbaker/matrix",
  1540. "version": "1.2.0",
  1541. "source": {
  1542. "type": "git",
  1543. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  1544. "reference": "5348c5a67e3b75cd209d70103f916a93b1f1ed21"
  1545. },
  1546. "dist": {
  1547. "type": "zip",
  1548. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/5348c5a67e3b75cd209d70103f916a93b1f1ed21",
  1549. "reference": "5348c5a67e3b75cd209d70103f916a93b1f1ed21",
  1550. "shasum": "",
  1551. "mirrors": [
  1552. {
  1553. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1554. "preferred": true
  1555. }
  1556. ]
  1557. },
  1558. "require": {
  1559. "php": "^5.6.0|^7.0.0"
  1560. },
  1561. "require-dev": {
  1562. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  1563. "phpcompatibility/php-compatibility": "dev-master",
  1564. "phploc/phploc": "^4",
  1565. "phpmd/phpmd": "dev-master",
  1566. "phpunit/phpunit": "^5.7",
  1567. "sebastian/phpcpd": "^3.0",
  1568. "squizlabs/php_codesniffer": "^3.0@dev"
  1569. },
  1570. "type": "library",
  1571. "autoload": {
  1572. "psr-4": {
  1573. "Matrix\\": "classes/src/"
  1574. },
  1575. "files": [
  1576. "classes/src/functions/adjoint.php",
  1577. "classes/src/functions/antidiagonal.php",
  1578. "classes/src/functions/cofactors.php",
  1579. "classes/src/functions/determinant.php",
  1580. "classes/src/functions/diagonal.php",
  1581. "classes/src/functions/identity.php",
  1582. "classes/src/functions/inverse.php",
  1583. "classes/src/functions/minors.php",
  1584. "classes/src/functions/trace.php",
  1585. "classes/src/functions/transpose.php",
  1586. "classes/src/operations/add.php",
  1587. "classes/src/operations/directsum.php",
  1588. "classes/src/operations/subtract.php",
  1589. "classes/src/operations/multiply.php",
  1590. "classes/src/operations/divideby.php",
  1591. "classes/src/operations/divideinto.php"
  1592. ]
  1593. },
  1594. "notification-url": "https://packagist.org/downloads/",
  1595. "license": [
  1596. "MIT"
  1597. ],
  1598. "authors": [
  1599. {
  1600. "name": "Mark Baker",
  1601. "email": "mark@lange.demon.co.uk"
  1602. }
  1603. ],
  1604. "description": "PHP Class for working with matrices",
  1605. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  1606. "keywords": [
  1607. "mathematics",
  1608. "matrix",
  1609. "vector"
  1610. ],
  1611. "time": "2019-10-06T11:29:25+00:00"
  1612. },
  1613. {
  1614. "name": "monolog/monolog",
  1615. "version": "1.25.1",
  1616. "source": {
  1617. "type": "git",
  1618. "url": "https://github.com/Seldaek/monolog.git",
  1619. "reference": "70e65a5470a42cfec1a7da00d30edb6e617e8dcf"
  1620. },
  1621. "dist": {
  1622. "type": "zip",
  1623. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/70e65a5470a42cfec1a7da00d30edb6e617e8dcf",
  1624. "reference": "70e65a5470a42cfec1a7da00d30edb6e617e8dcf",
  1625. "shasum": "",
  1626. "mirrors": [
  1627. {
  1628. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1629. "preferred": true
  1630. }
  1631. ]
  1632. },
  1633. "require": {
  1634. "php": ">=5.3.0",
  1635. "psr/log": "~1.0"
  1636. },
  1637. "provide": {
  1638. "psr/log-implementation": "1.0.0"
  1639. },
  1640. "require-dev": {
  1641. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1642. "doctrine/couchdb": "~1.0@dev",
  1643. "graylog2/gelf-php": "~1.0",
  1644. "jakub-onderka/php-parallel-lint": "0.9",
  1645. "php-amqplib/php-amqplib": "~2.4",
  1646. "php-console/php-console": "^3.1.3",
  1647. "phpunit/phpunit": "~4.5",
  1648. "phpunit/phpunit-mock-objects": "2.3.0",
  1649. "ruflin/elastica": ">=0.90 <3.0",
  1650. "sentry/sentry": "^0.13",
  1651. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1652. },
  1653. "suggest": {
  1654. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1655. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1656. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1657. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1658. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1659. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  1660. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1661. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1662. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1663. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1664. "sentry/sentry": "Allow sending log messages to a Sentry server"
  1665. },
  1666. "type": "library",
  1667. "extra": {
  1668. "branch-alias": {
  1669. "dev-master": "2.0.x-dev"
  1670. }
  1671. },
  1672. "autoload": {
  1673. "psr-4": {
  1674. "Monolog\\": "src/Monolog"
  1675. }
  1676. },
  1677. "notification-url": "https://packagist.org/downloads/",
  1678. "license": [
  1679. "MIT"
  1680. ],
  1681. "authors": [
  1682. {
  1683. "name": "Jordi Boggiano",
  1684. "email": "j.boggiano@seld.be",
  1685. "homepage": "http://seld.be"
  1686. }
  1687. ],
  1688. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1689. "homepage": "http://github.com/Seldaek/monolog",
  1690. "keywords": [
  1691. "log",
  1692. "logging",
  1693. "psr-3"
  1694. ],
  1695. "time": "2019-09-06T13:49:17+00:00"
  1696. },
  1697. {
  1698. "name": "nesbot/carbon",
  1699. "version": "2.25.3",
  1700. "source": {
  1701. "type": "git",
  1702. "url": "https://github.com/briannesbitt/Carbon.git",
  1703. "reference": "d07636581795383e2fea2d711212d30f941f2039"
  1704. },
  1705. "dist": {
  1706. "type": "zip",
  1707. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/d07636581795383e2fea2d711212d30f941f2039",
  1708. "reference": "d07636581795383e2fea2d711212d30f941f2039",
  1709. "shasum": "",
  1710. "mirrors": [
  1711. {
  1712. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1713. "preferred": true
  1714. }
  1715. ]
  1716. },
  1717. "require": {
  1718. "ext-json": "*",
  1719. "php": "^7.1.8 || ^8.0",
  1720. "symfony/translation": "^3.4 || ^4.0"
  1721. },
  1722. "require-dev": {
  1723. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  1724. "kylekatarnls/multi-tester": "^1.1",
  1725. "phpmd/phpmd": "dev-php-7.1-compatibility",
  1726. "phpstan/phpstan": "^0.11",
  1727. "phpunit/phpunit": "^7.5 || ^8.0",
  1728. "squizlabs/php_codesniffer": "^3.4"
  1729. },
  1730. "bin": [
  1731. "bin/carbon"
  1732. ],
  1733. "type": "library",
  1734. "extra": {
  1735. "laravel": {
  1736. "providers": [
  1737. "Carbon\\Laravel\\ServiceProvider"
  1738. ]
  1739. }
  1740. },
  1741. "autoload": {
  1742. "psr-4": {
  1743. "Carbon\\": "src/Carbon/"
  1744. }
  1745. },
  1746. "notification-url": "https://packagist.org/downloads/",
  1747. "license": [
  1748. "MIT"
  1749. ],
  1750. "authors": [
  1751. {
  1752. "name": "Brian Nesbitt",
  1753. "email": "brian@nesbot.com",
  1754. "homepage": "http://nesbot.com"
  1755. },
  1756. {
  1757. "name": "kylekatarnls",
  1758. "homepage": "http://github.com/kylekatarnls"
  1759. }
  1760. ],
  1761. "description": "An API extension for DateTime that supports 281 different languages.",
  1762. "homepage": "http://carbon.nesbot.com",
  1763. "keywords": [
  1764. "date",
  1765. "datetime",
  1766. "time"
  1767. ],
  1768. "time": "2019-10-20T11:05:44+00:00"
  1769. },
  1770. {
  1771. "name": "nikic/php-parser",
  1772. "version": "v4.2.4",
  1773. "source": {
  1774. "type": "git",
  1775. "url": "https://github.com/nikic/PHP-Parser.git",
  1776. "reference": "97e59c7a16464196a8b9c77c47df68e4a39a45c4"
  1777. },
  1778. "dist": {
  1779. "type": "zip",
  1780. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/97e59c7a16464196a8b9c77c47df68e4a39a45c4",
  1781. "reference": "97e59c7a16464196a8b9c77c47df68e4a39a45c4",
  1782. "shasum": "",
  1783. "mirrors": [
  1784. {
  1785. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1786. "preferred": true
  1787. }
  1788. ]
  1789. },
  1790. "require": {
  1791. "ext-tokenizer": "*",
  1792. "php": ">=7.0"
  1793. },
  1794. "require-dev": {
  1795. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  1796. },
  1797. "bin": [
  1798. "bin/php-parse"
  1799. ],
  1800. "type": "library",
  1801. "extra": {
  1802. "branch-alias": {
  1803. "dev-master": "4.2-dev"
  1804. }
  1805. },
  1806. "autoload": {
  1807. "psr-4": {
  1808. "PhpParser\\": "lib/PhpParser"
  1809. }
  1810. },
  1811. "notification-url": "https://packagist.org/downloads/",
  1812. "license": [
  1813. "BSD-3-Clause"
  1814. ],
  1815. "authors": [
  1816. {
  1817. "name": "Nikita Popov"
  1818. }
  1819. ],
  1820. "description": "A PHP parser written in PHP",
  1821. "keywords": [
  1822. "parser",
  1823. "php"
  1824. ],
  1825. "time": "2019-09-01T07:51:21+00:00"
  1826. },
  1827. {
  1828. "name": "opis/closure",
  1829. "version": "3.4.1",
  1830. "source": {
  1831. "type": "git",
  1832. "url": "https://github.com/opis/closure.git",
  1833. "reference": "e79f851749c3caa836d7ccc01ede5828feb762c7"
  1834. },
  1835. "dist": {
  1836. "type": "zip",
  1837. "url": "https://api.github.com/repos/opis/closure/zipball/e79f851749c3caa836d7ccc01ede5828feb762c7",
  1838. "reference": "e79f851749c3caa836d7ccc01ede5828feb762c7",
  1839. "shasum": "",
  1840. "mirrors": [
  1841. {
  1842. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1843. "preferred": true
  1844. }
  1845. ]
  1846. },
  1847. "require": {
  1848. "php": "^5.4 || ^7.0"
  1849. },
  1850. "require-dev": {
  1851. "jeremeamia/superclosure": "^2.0",
  1852. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  1853. },
  1854. "type": "library",
  1855. "extra": {
  1856. "branch-alias": {
  1857. "dev-master": "3.3.x-dev"
  1858. }
  1859. },
  1860. "autoload": {
  1861. "psr-4": {
  1862. "Opis\\Closure\\": "src/"
  1863. },
  1864. "files": [
  1865. "functions.php"
  1866. ]
  1867. },
  1868. "notification-url": "https://packagist.org/downloads/",
  1869. "license": [
  1870. "MIT"
  1871. ],
  1872. "authors": [
  1873. {
  1874. "name": "Marius Sarca",
  1875. "email": "marius.sarca@gmail.com"
  1876. },
  1877. {
  1878. "name": "Sorin Sarca",
  1879. "email": "sarca_sorin@hotmail.com"
  1880. }
  1881. ],
  1882. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  1883. "homepage": "https://opis.io/closure",
  1884. "keywords": [
  1885. "anonymous functions",
  1886. "closure",
  1887. "function",
  1888. "serializable",
  1889. "serialization",
  1890. "serialize"
  1891. ],
  1892. "time": "2019-10-19T18:38:51+00:00"
  1893. },
  1894. {
  1895. "name": "overtrue/laravel-pinyin",
  1896. "version": "4.0.0",
  1897. "source": {
  1898. "type": "git",
  1899. "url": "https://github.com/overtrue/laravel-pinyin.git",
  1900. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21"
  1901. },
  1902. "dist": {
  1903. "type": "zip",
  1904. "url": "https://api.github.com/repos/overtrue/laravel-pinyin/zipball/c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  1905. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  1906. "shasum": "",
  1907. "mirrors": [
  1908. {
  1909. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1910. "preferred": true
  1911. }
  1912. ]
  1913. },
  1914. "require": {
  1915. "overtrue/pinyin": "~4.0"
  1916. },
  1917. "type": "library",
  1918. "extra": {
  1919. "laravel": {
  1920. "providers": [
  1921. "Overtrue\\LaravelPinyin\\ServiceProvider"
  1922. ],
  1923. "aliases": {
  1924. "Pinyin": "Overtrue\\LaravelPinyin\\Facades\\Pinyin"
  1925. }
  1926. }
  1927. },
  1928. "autoload": {
  1929. "psr-4": {
  1930. "Overtrue\\LaravelPinyin\\": "src/"
  1931. },
  1932. "files": [
  1933. "src/helpers.php"
  1934. ]
  1935. },
  1936. "notification-url": "https://packagist.org/downloads/",
  1937. "license": [
  1938. "MIT"
  1939. ],
  1940. "authors": [
  1941. {
  1942. "name": "overtrue",
  1943. "email": "anzhengchao@gmail.com"
  1944. }
  1945. ],
  1946. "description": "Chinese to Pinyin translator.",
  1947. "keywords": [
  1948. "Chinese",
  1949. "Pinyin",
  1950. "laravel",
  1951. "overtrue"
  1952. ],
  1953. "time": "2018-10-10T09:02:46+00:00"
  1954. },
  1955. {
  1956. "name": "overtrue/pinyin",
  1957. "version": "4.0.5",
  1958. "source": {
  1959. "type": "git",
  1960. "url": "https://github.com/overtrue/pinyin.git",
  1961. "reference": "94fdb3ea6eca5677afd9548111d95bedcd5a4086"
  1962. },
  1963. "dist": {
  1964. "type": "zip",
  1965. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/94fdb3ea6eca5677afd9548111d95bedcd5a4086",
  1966. "reference": "94fdb3ea6eca5677afd9548111d95bedcd5a4086",
  1967. "shasum": "",
  1968. "mirrors": [
  1969. {
  1970. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1971. "preferred": true
  1972. }
  1973. ]
  1974. },
  1975. "require": {
  1976. "php": ">=5.5"
  1977. },
  1978. "require-dev": {
  1979. "phpunit/phpunit": "~7.5"
  1980. },
  1981. "type": "library",
  1982. "autoload": {
  1983. "psr-4": {
  1984. "Overtrue\\Pinyin\\": "src/"
  1985. },
  1986. "files": [
  1987. "src/const.php"
  1988. ]
  1989. },
  1990. "notification-url": "https://packagist.org/downloads/",
  1991. "license": [
  1992. "MIT"
  1993. ],
  1994. "authors": [
  1995. {
  1996. "name": "Carlos",
  1997. "homepage": "http://github.com/overtrue"
  1998. }
  1999. ],
  2000. "description": "Chinese to pinyin translator.",
  2001. "homepage": "https://github.com/overtrue/pinyin",
  2002. "keywords": [
  2003. "Chinese",
  2004. "Pinyin",
  2005. "cn2pinyin"
  2006. ],
  2007. "time": "2019-09-20T12:43:45+00:00"
  2008. },
  2009. {
  2010. "name": "paragonie/random_compat",
  2011. "version": "v9.99.99",
  2012. "source": {
  2013. "type": "git",
  2014. "url": "https://github.com/paragonie/random_compat.git",
  2015. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  2016. },
  2017. "dist": {
  2018. "type": "zip",
  2019. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  2020. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  2021. "shasum": "",
  2022. "mirrors": [
  2023. {
  2024. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2025. "preferred": true
  2026. }
  2027. ]
  2028. },
  2029. "require": {
  2030. "php": "^7"
  2031. },
  2032. "require-dev": {
  2033. "phpunit/phpunit": "4.*|5.*",
  2034. "vimeo/psalm": "^1"
  2035. },
  2036. "suggest": {
  2037. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2038. },
  2039. "type": "library",
  2040. "notification-url": "https://packagist.org/downloads/",
  2041. "license": [
  2042. "MIT"
  2043. ],
  2044. "authors": [
  2045. {
  2046. "name": "Paragon Initiative Enterprises",
  2047. "email": "security@paragonie.com",
  2048. "homepage": "https://paragonie.com"
  2049. }
  2050. ],
  2051. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2052. "keywords": [
  2053. "csprng",
  2054. "polyfill",
  2055. "pseudorandom",
  2056. "random"
  2057. ],
  2058. "time": "2018-07-02T15:55:56+00:00"
  2059. },
  2060. {
  2061. "name": "paragonie/sodium_compat",
  2062. "version": "v1.12.0",
  2063. "source": {
  2064. "type": "git",
  2065. "url": "https://github.com/paragonie/sodium_compat.git",
  2066. "reference": "8228b286d6b8fe24825f42ce02403f72656ac826"
  2067. },
  2068. "dist": {
  2069. "type": "zip",
  2070. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/8228b286d6b8fe24825f42ce02403f72656ac826",
  2071. "reference": "8228b286d6b8fe24825f42ce02403f72656ac826",
  2072. "shasum": "",
  2073. "mirrors": [
  2074. {
  2075. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2076. "preferred": true
  2077. }
  2078. ]
  2079. },
  2080. "require": {
  2081. "paragonie/random_compat": ">=1",
  2082. "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8"
  2083. },
  2084. "require-dev": {
  2085. "phpunit/phpunit": "^3|^4|^5|^6|^7"
  2086. },
  2087. "suggest": {
  2088. "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
  2089. "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  2090. },
  2091. "type": "library",
  2092. "autoload": {
  2093. "files": [
  2094. "autoload.php"
  2095. ]
  2096. },
  2097. "notification-url": "https://packagist.org/downloads/",
  2098. "license": [
  2099. "ISC"
  2100. ],
  2101. "authors": [
  2102. {
  2103. "name": "Paragon Initiative Enterprises",
  2104. "email": "security@paragonie.com"
  2105. },
  2106. {
  2107. "name": "Frank Denis",
  2108. "email": "jedisct1@pureftpd.org"
  2109. }
  2110. ],
  2111. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  2112. "keywords": [
  2113. "Authentication",
  2114. "BLAKE2b",
  2115. "ChaCha20",
  2116. "ChaCha20-Poly1305",
  2117. "Chapoly",
  2118. "Curve25519",
  2119. "Ed25519",
  2120. "EdDSA",
  2121. "Edwards-curve Digital Signature Algorithm",
  2122. "Elliptic Curve Diffie-Hellman",
  2123. "Poly1305",
  2124. "Pure-PHP cryptography",
  2125. "RFC 7748",
  2126. "RFC 8032",
  2127. "Salpoly",
  2128. "Salsa20",
  2129. "X25519",
  2130. "XChaCha20-Poly1305",
  2131. "XSalsa20-Poly1305",
  2132. "Xchacha20",
  2133. "Xsalsa20",
  2134. "aead",
  2135. "cryptography",
  2136. "ecdh",
  2137. "elliptic curve",
  2138. "elliptic curve cryptography",
  2139. "encryption",
  2140. "libsodium",
  2141. "php",
  2142. "public-key cryptography",
  2143. "secret-key cryptography",
  2144. "side-channel resistant"
  2145. ],
  2146. "time": "2019-10-19T15:30:42+00:00"
  2147. },
  2148. {
  2149. "name": "phpoffice/phpspreadsheet",
  2150. "version": "1.9.0",
  2151. "source": {
  2152. "type": "git",
  2153. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  2154. "reference": "8dea03eaf60a349b6097e4bcad11f894668280df"
  2155. },
  2156. "dist": {
  2157. "type": "zip",
  2158. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/8dea03eaf60a349b6097e4bcad11f894668280df",
  2159. "reference": "8dea03eaf60a349b6097e4bcad11f894668280df",
  2160. "shasum": "",
  2161. "mirrors": [
  2162. {
  2163. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2164. "preferred": true
  2165. }
  2166. ]
  2167. },
  2168. "require": {
  2169. "ext-ctype": "*",
  2170. "ext-dom": "*",
  2171. "ext-fileinfo": "*",
  2172. "ext-gd": "*",
  2173. "ext-iconv": "*",
  2174. "ext-libxml": "*",
  2175. "ext-mbstring": "*",
  2176. "ext-simplexml": "*",
  2177. "ext-xml": "*",
  2178. "ext-xmlreader": "*",
  2179. "ext-xmlwriter": "*",
  2180. "ext-zip": "*",
  2181. "ext-zlib": "*",
  2182. "markbaker/complex": "^1.4",
  2183. "markbaker/matrix": "^1.1",
  2184. "php": "^7.1",
  2185. "psr/simple-cache": "^1.0"
  2186. },
  2187. "require-dev": {
  2188. "dompdf/dompdf": "^0.8.0",
  2189. "friendsofphp/php-cs-fixer": "@stable",
  2190. "jpgraph/jpgraph": "^4.0",
  2191. "mpdf/mpdf": "^7.0.0",
  2192. "phpcompatibility/php-compatibility": "^8.0",
  2193. "phpunit/phpunit": "^7.5",
  2194. "squizlabs/php_codesniffer": "^3.3",
  2195. "tecnickcom/tcpdf": "^6.2"
  2196. },
  2197. "suggest": {
  2198. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  2199. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  2200. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  2201. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  2202. },
  2203. "type": "library",
  2204. "autoload": {
  2205. "psr-4": {
  2206. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  2207. }
  2208. },
  2209. "notification-url": "https://packagist.org/downloads/",
  2210. "license": [
  2211. "LGPL-2.1-or-later"
  2212. ],
  2213. "authors": [
  2214. {
  2215. "name": "Maarten Balliauw",
  2216. "homepage": "https://blog.maartenballiauw.be"
  2217. },
  2218. {
  2219. "name": "Mark Baker",
  2220. "homepage": "https://markbakeruk.net"
  2221. },
  2222. {
  2223. "name": "Franck Lefevre",
  2224. "homepage": "https://rootslabs.net"
  2225. },
  2226. {
  2227. "name": "Erik Tilt"
  2228. },
  2229. {
  2230. "name": "Adrien Crivelli"
  2231. }
  2232. ],
  2233. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  2234. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  2235. "keywords": [
  2236. "OpenXML",
  2237. "excel",
  2238. "gnumeric",
  2239. "ods",
  2240. "php",
  2241. "spreadsheet",
  2242. "xls",
  2243. "xlsx"
  2244. ],
  2245. "time": "2019-08-17T22:24:35+00:00"
  2246. },
  2247. {
  2248. "name": "phpoption/phpoption",
  2249. "version": "1.5.0",
  2250. "source": {
  2251. "type": "git",
  2252. "url": "https://github.com/schmittjoh/php-option.git",
  2253. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed"
  2254. },
  2255. "dist": {
  2256. "type": "zip",
  2257. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  2258. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  2259. "shasum": "",
  2260. "mirrors": [
  2261. {
  2262. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2263. "preferred": true
  2264. }
  2265. ]
  2266. },
  2267. "require": {
  2268. "php": ">=5.3.0"
  2269. },
  2270. "require-dev": {
  2271. "phpunit/phpunit": "4.7.*"
  2272. },
  2273. "type": "library",
  2274. "extra": {
  2275. "branch-alias": {
  2276. "dev-master": "1.3-dev"
  2277. }
  2278. },
  2279. "autoload": {
  2280. "psr-0": {
  2281. "PhpOption\\": "src/"
  2282. }
  2283. },
  2284. "notification-url": "https://packagist.org/downloads/",
  2285. "license": [
  2286. "Apache2"
  2287. ],
  2288. "authors": [
  2289. {
  2290. "name": "Johannes M. Schmitt",
  2291. "email": "schmittjoh@gmail.com"
  2292. }
  2293. ],
  2294. "description": "Option Type for PHP",
  2295. "keywords": [
  2296. "language",
  2297. "option",
  2298. "php",
  2299. "type"
  2300. ],
  2301. "time": "2015-07-25T16:39:46+00:00"
  2302. },
  2303. {
  2304. "name": "predis/predis",
  2305. "version": "v1.1.1",
  2306. "source": {
  2307. "type": "git",
  2308. "url": "https://github.com/nrk/predis.git",
  2309. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1"
  2310. },
  2311. "dist": {
  2312. "type": "zip",
  2313. "url": "https://api.github.com/repos/nrk/predis/zipball/f0210e38881631afeafb56ab43405a92cafd9fd1",
  2314. "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1",
  2315. "shasum": "",
  2316. "mirrors": [
  2317. {
  2318. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2319. "preferred": true
  2320. }
  2321. ]
  2322. },
  2323. "require": {
  2324. "php": ">=5.3.9"
  2325. },
  2326. "require-dev": {
  2327. "phpunit/phpunit": "~4.8"
  2328. },
  2329. "suggest": {
  2330. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  2331. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  2332. },
  2333. "type": "library",
  2334. "autoload": {
  2335. "psr-4": {
  2336. "Predis\\": "src/"
  2337. }
  2338. },
  2339. "notification-url": "https://packagist.org/downloads/",
  2340. "license": [
  2341. "MIT"
  2342. ],
  2343. "authors": [
  2344. {
  2345. "name": "Daniele Alessandri",
  2346. "email": "suppakilla@gmail.com",
  2347. "homepage": "http://clorophilla.net"
  2348. }
  2349. ],
  2350. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  2351. "homepage": "http://github.com/nrk/predis",
  2352. "keywords": [
  2353. "nosql",
  2354. "predis",
  2355. "redis"
  2356. ],
  2357. "time": "2016-06-16T16:22:20+00:00"
  2358. },
  2359. {
  2360. "name": "psr/container",
  2361. "version": "1.0.0",
  2362. "source": {
  2363. "type": "git",
  2364. "url": "https://github.com/php-fig/container.git",
  2365. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  2366. },
  2367. "dist": {
  2368. "type": "zip",
  2369. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2370. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2371. "shasum": "",
  2372. "mirrors": [
  2373. {
  2374. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2375. "preferred": true
  2376. }
  2377. ]
  2378. },
  2379. "require": {
  2380. "php": ">=5.3.0"
  2381. },
  2382. "type": "library",
  2383. "extra": {
  2384. "branch-alias": {
  2385. "dev-master": "1.0.x-dev"
  2386. }
  2387. },
  2388. "autoload": {
  2389. "psr-4": {
  2390. "Psr\\Container\\": "src/"
  2391. }
  2392. },
  2393. "notification-url": "https://packagist.org/downloads/",
  2394. "license": [
  2395. "MIT"
  2396. ],
  2397. "authors": [
  2398. {
  2399. "name": "PHP-FIG",
  2400. "homepage": "http://www.php-fig.org/"
  2401. }
  2402. ],
  2403. "description": "Common Container Interface (PHP FIG PSR-11)",
  2404. "homepage": "https://github.com/php-fig/container",
  2405. "keywords": [
  2406. "PSR-11",
  2407. "container-fluid",
  2408. "container-interface",
  2409. "container-interop",
  2410. "psr"
  2411. ],
  2412. "time": "2017-02-14T16:28:37+00:00"
  2413. },
  2414. {
  2415. "name": "psr/http-message",
  2416. "version": "1.0.1",
  2417. "source": {
  2418. "type": "git",
  2419. "url": "https://github.com/php-fig/http-message.git",
  2420. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2421. },
  2422. "dist": {
  2423. "type": "zip",
  2424. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2425. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2426. "shasum": "",
  2427. "mirrors": [
  2428. {
  2429. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2430. "preferred": true
  2431. }
  2432. ]
  2433. },
  2434. "require": {
  2435. "php": ">=5.3.0"
  2436. },
  2437. "type": "library",
  2438. "extra": {
  2439. "branch-alias": {
  2440. "dev-master": "1.0.x-dev"
  2441. }
  2442. },
  2443. "autoload": {
  2444. "psr-4": {
  2445. "Psr\\Http\\Message\\": "src/"
  2446. }
  2447. },
  2448. "notification-url": "https://packagist.org/downloads/",
  2449. "license": [
  2450. "MIT"
  2451. ],
  2452. "authors": [
  2453. {
  2454. "name": "PHP-FIG",
  2455. "homepage": "http://www.php-fig.org/"
  2456. }
  2457. ],
  2458. "description": "Common interface for HTTP messages",
  2459. "homepage": "https://github.com/php-fig/http-message",
  2460. "keywords": [
  2461. "http",
  2462. "http-message",
  2463. "psr",
  2464. "psr-7",
  2465. "request",
  2466. "response"
  2467. ],
  2468. "time": "2016-08-06T14:39:51+00:00"
  2469. },
  2470. {
  2471. "name": "psr/log",
  2472. "version": "1.1.0",
  2473. "source": {
  2474. "type": "git",
  2475. "url": "https://github.com/php-fig/log.git",
  2476. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  2477. },
  2478. "dist": {
  2479. "type": "zip",
  2480. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  2481. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  2482. "shasum": "",
  2483. "mirrors": [
  2484. {
  2485. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2486. "preferred": true
  2487. }
  2488. ]
  2489. },
  2490. "require": {
  2491. "php": ">=5.3.0"
  2492. },
  2493. "type": "library",
  2494. "extra": {
  2495. "branch-alias": {
  2496. "dev-master": "1.0.x-dev"
  2497. }
  2498. },
  2499. "autoload": {
  2500. "psr-4": {
  2501. "Psr\\Log\\": "Psr/Log/"
  2502. }
  2503. },
  2504. "notification-url": "https://packagist.org/downloads/",
  2505. "license": [
  2506. "MIT"
  2507. ],
  2508. "authors": [
  2509. {
  2510. "name": "PHP-FIG",
  2511. "homepage": "http://www.php-fig.org/"
  2512. }
  2513. ],
  2514. "description": "Common interface for logging libraries",
  2515. "homepage": "https://github.com/php-fig/log",
  2516. "keywords": [
  2517. "log",
  2518. "psr",
  2519. "psr-3"
  2520. ],
  2521. "time": "2018-11-20T15:27:04+00:00"
  2522. },
  2523. {
  2524. "name": "psr/simple-cache",
  2525. "version": "1.0.1",
  2526. "source": {
  2527. "type": "git",
  2528. "url": "https://github.com/php-fig/simple-cache.git",
  2529. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2530. },
  2531. "dist": {
  2532. "type": "zip",
  2533. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2534. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2535. "shasum": "",
  2536. "mirrors": [
  2537. {
  2538. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2539. "preferred": true
  2540. }
  2541. ]
  2542. },
  2543. "require": {
  2544. "php": ">=5.3.0"
  2545. },
  2546. "type": "library",
  2547. "extra": {
  2548. "branch-alias": {
  2549. "dev-master": "1.0.x-dev"
  2550. }
  2551. },
  2552. "autoload": {
  2553. "psr-4": {
  2554. "Psr\\SimpleCache\\": "src/"
  2555. }
  2556. },
  2557. "notification-url": "https://packagist.org/downloads/",
  2558. "license": [
  2559. "MIT"
  2560. ],
  2561. "authors": [
  2562. {
  2563. "name": "PHP-FIG",
  2564. "homepage": "http://www.php-fig.org/"
  2565. }
  2566. ],
  2567. "description": "Common interfaces for simple caching",
  2568. "keywords": [
  2569. "cache",
  2570. "caching",
  2571. "psr",
  2572. "psr-16",
  2573. "simple-cache"
  2574. ],
  2575. "time": "2017-10-23T01:57:42+00:00"
  2576. },
  2577. {
  2578. "name": "psy/psysh",
  2579. "version": "v0.9.9",
  2580. "source": {
  2581. "type": "git",
  2582. "url": "https://github.com/bobthecow/psysh.git",
  2583. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  2584. },
  2585. "dist": {
  2586. "type": "zip",
  2587. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  2588. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  2589. "shasum": "",
  2590. "mirrors": [
  2591. {
  2592. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2593. "preferred": true
  2594. }
  2595. ]
  2596. },
  2597. "require": {
  2598. "dnoegel/php-xdg-base-dir": "0.1",
  2599. "ext-json": "*",
  2600. "ext-tokenizer": "*",
  2601. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  2602. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  2603. "php": ">=5.4.0",
  2604. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  2605. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  2606. },
  2607. "require-dev": {
  2608. "bamarni/composer-bin-plugin": "^1.2",
  2609. "hoa/console": "~2.15|~3.16",
  2610. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  2611. },
  2612. "suggest": {
  2613. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  2614. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  2615. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  2616. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  2617. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  2618. },
  2619. "bin": [
  2620. "bin/psysh"
  2621. ],
  2622. "type": "library",
  2623. "extra": {
  2624. "branch-alias": {
  2625. "dev-develop": "0.9.x-dev"
  2626. }
  2627. },
  2628. "autoload": {
  2629. "files": [
  2630. "src/functions.php"
  2631. ],
  2632. "psr-4": {
  2633. "Psy\\": "src/"
  2634. }
  2635. },
  2636. "notification-url": "https://packagist.org/downloads/",
  2637. "license": [
  2638. "MIT"
  2639. ],
  2640. "authors": [
  2641. {
  2642. "name": "Justin Hileman",
  2643. "email": "justin@justinhileman.info",
  2644. "homepage": "http://justinhileman.com"
  2645. }
  2646. ],
  2647. "description": "An interactive shell for modern PHP.",
  2648. "homepage": "http://psysh.org",
  2649. "keywords": [
  2650. "REPL",
  2651. "console",
  2652. "interactive",
  2653. "shell"
  2654. ],
  2655. "time": "2018-10-13T15:16:03+00:00"
  2656. },
  2657. {
  2658. "name": "pusher/pusher-php-server",
  2659. "version": "v4.0.0",
  2660. "source": {
  2661. "type": "git",
  2662. "url": "https://github.com/pusher/pusher-http-php.git",
  2663. "reference": "43540be9536469f8eaec95a347d3f7532bac852c"
  2664. },
  2665. "dist": {
  2666. "type": "zip",
  2667. "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/43540be9536469f8eaec95a347d3f7532bac852c",
  2668. "reference": "43540be9536469f8eaec95a347d3f7532bac852c",
  2669. "shasum": "",
  2670. "mirrors": [
  2671. {
  2672. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2673. "preferred": true
  2674. }
  2675. ]
  2676. },
  2677. "require": {
  2678. "ext-curl": "*",
  2679. "paragonie/sodium_compat": "^1.6",
  2680. "php": ">=7.1 <7.4",
  2681. "psr/log": "^1.0"
  2682. },
  2683. "require-dev": {
  2684. "phpunit/phpunit": "^7.2"
  2685. },
  2686. "type": "library",
  2687. "extra": {
  2688. "branch-alias": {
  2689. "dev-master": "3.4-dev"
  2690. }
  2691. },
  2692. "autoload": {
  2693. "psr-4": {
  2694. "Pusher\\": "src/"
  2695. }
  2696. },
  2697. "notification-url": "https://packagist.org/downloads/",
  2698. "license": [
  2699. "MIT"
  2700. ],
  2701. "description": "Library for interacting with the Pusher REST API",
  2702. "keywords": [
  2703. "events",
  2704. "messaging",
  2705. "php-pusher-server",
  2706. "publish",
  2707. "push",
  2708. "pusher",
  2709. "real time",
  2710. "real-time",
  2711. "realtime",
  2712. "rest",
  2713. "trigger"
  2714. ],
  2715. "time": "2019-06-25T09:22:44+00:00"
  2716. },
  2717. {
  2718. "name": "ralouphie/getallheaders",
  2719. "version": "3.0.3",
  2720. "source": {
  2721. "type": "git",
  2722. "url": "https://github.com/ralouphie/getallheaders.git",
  2723. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2724. },
  2725. "dist": {
  2726. "type": "zip",
  2727. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2728. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2729. "shasum": "",
  2730. "mirrors": [
  2731. {
  2732. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2733. "preferred": true
  2734. }
  2735. ]
  2736. },
  2737. "require": {
  2738. "php": ">=5.6"
  2739. },
  2740. "require-dev": {
  2741. "php-coveralls/php-coveralls": "^2.1",
  2742. "phpunit/phpunit": "^5 || ^6.5"
  2743. },
  2744. "type": "library",
  2745. "autoload": {
  2746. "files": [
  2747. "src/getallheaders.php"
  2748. ]
  2749. },
  2750. "notification-url": "https://packagist.org/downloads/",
  2751. "license": [
  2752. "MIT"
  2753. ],
  2754. "authors": [
  2755. {
  2756. "name": "Ralph Khattar",
  2757. "email": "ralph.khattar@gmail.com"
  2758. }
  2759. ],
  2760. "description": "A polyfill for getallheaders.",
  2761. "time": "2019-03-08T08:55:37+00:00"
  2762. },
  2763. {
  2764. "name": "ramsey/uuid",
  2765. "version": "3.8.0",
  2766. "source": {
  2767. "type": "git",
  2768. "url": "https://github.com/ramsey/uuid.git",
  2769. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3"
  2770. },
  2771. "dist": {
  2772. "type": "zip",
  2773. "url": "https://api.github.com/repos/ramsey/uuid/zipball/d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  2774. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  2775. "shasum": "",
  2776. "mirrors": [
  2777. {
  2778. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2779. "preferred": true
  2780. }
  2781. ]
  2782. },
  2783. "require": {
  2784. "paragonie/random_compat": "^1.0|^2.0|9.99.99",
  2785. "php": "^5.4 || ^7.0",
  2786. "symfony/polyfill-ctype": "^1.8"
  2787. },
  2788. "replace": {
  2789. "rhumsaa/uuid": "self.version"
  2790. },
  2791. "require-dev": {
  2792. "codeception/aspect-mock": "^1.0 | ~2.0.0",
  2793. "doctrine/annotations": "~1.2.0",
  2794. "goaop/framework": "1.0.0-alpha.2 | ^1.0 | ~2.1.0",
  2795. "ircmaxell/random-lib": "^1.1",
  2796. "jakub-onderka/php-parallel-lint": "^0.9.0",
  2797. "mockery/mockery": "^0.9.9",
  2798. "moontoast/math": "^1.1",
  2799. "php-mock/php-mock-phpunit": "^0.3|^1.1",
  2800. "phpunit/phpunit": "^4.7|^5.0|^6.5",
  2801. "squizlabs/php_codesniffer": "^2.3"
  2802. },
  2803. "suggest": {
  2804. "ext-ctype": "Provides support for PHP Ctype functions",
  2805. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  2806. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  2807. "ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  2808. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  2809. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  2810. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  2811. },
  2812. "type": "library",
  2813. "extra": {
  2814. "branch-alias": {
  2815. "dev-master": "3.x-dev"
  2816. }
  2817. },
  2818. "autoload": {
  2819. "psr-4": {
  2820. "Ramsey\\Uuid\\": "src/"
  2821. }
  2822. },
  2823. "notification-url": "https://packagist.org/downloads/",
  2824. "license": [
  2825. "MIT"
  2826. ],
  2827. "authors": [
  2828. {
  2829. "name": "Marijn Huizendveld",
  2830. "email": "marijn.huizendveld@gmail.com"
  2831. },
  2832. {
  2833. "name": "Thibaud Fabre",
  2834. "email": "thibaud@aztech.io"
  2835. },
  2836. {
  2837. "name": "Ben Ramsey",
  2838. "email": "ben@benramsey.com",
  2839. "homepage": "https://benramsey.com"
  2840. }
  2841. ],
  2842. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  2843. "homepage": "https://github.com/ramsey/uuid",
  2844. "keywords": [
  2845. "guid",
  2846. "identifier",
  2847. "uuid"
  2848. ],
  2849. "time": "2018-07-19T23:38:55+00:00"
  2850. },
  2851. {
  2852. "name": "swiftmailer/swiftmailer",
  2853. "version": "v6.2.1",
  2854. "source": {
  2855. "type": "git",
  2856. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2857. "reference": "5397cd05b0a0f7937c47b0adcb4c60e5ab936b6a"
  2858. },
  2859. "dist": {
  2860. "type": "zip",
  2861. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/5397cd05b0a0f7937c47b0adcb4c60e5ab936b6a",
  2862. "reference": "5397cd05b0a0f7937c47b0adcb4c60e5ab936b6a",
  2863. "shasum": "",
  2864. "mirrors": [
  2865. {
  2866. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2867. "preferred": true
  2868. }
  2869. ]
  2870. },
  2871. "require": {
  2872. "egulias/email-validator": "~2.0",
  2873. "php": ">=7.0.0",
  2874. "symfony/polyfill-iconv": "^1.0",
  2875. "symfony/polyfill-intl-idn": "^1.10",
  2876. "symfony/polyfill-mbstring": "^1.0"
  2877. },
  2878. "require-dev": {
  2879. "mockery/mockery": "~0.9.1",
  2880. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  2881. },
  2882. "suggest": {
  2883. "ext-intl": "Needed to support internationalized email addresses",
  2884. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  2885. },
  2886. "type": "library",
  2887. "extra": {
  2888. "branch-alias": {
  2889. "dev-master": "6.2-dev"
  2890. }
  2891. },
  2892. "autoload": {
  2893. "files": [
  2894. "lib/swift_required.php"
  2895. ]
  2896. },
  2897. "notification-url": "https://packagist.org/downloads/",
  2898. "license": [
  2899. "MIT"
  2900. ],
  2901. "authors": [
  2902. {
  2903. "name": "Chris Corbyn"
  2904. },
  2905. {
  2906. "name": "Fabien Potencier",
  2907. "email": "fabien@symfony.com"
  2908. }
  2909. ],
  2910. "description": "Swiftmailer, free feature-rich PHP mailer",
  2911. "homepage": "https://swiftmailer.symfony.com",
  2912. "keywords": [
  2913. "email",
  2914. "mail",
  2915. "mailer"
  2916. ],
  2917. "time": "2019-04-21T09:21:45+00:00"
  2918. },
  2919. {
  2920. "name": "symfony/console",
  2921. "version": "v4.3.5",
  2922. "source": {
  2923. "type": "git",
  2924. "url": "https://github.com/symfony/console.git",
  2925. "reference": "929ddf360d401b958f611d44e726094ab46a7369"
  2926. },
  2927. "dist": {
  2928. "type": "zip",
  2929. "url": "https://api.github.com/repos/symfony/console/zipball/929ddf360d401b958f611d44e726094ab46a7369",
  2930. "reference": "929ddf360d401b958f611d44e726094ab46a7369",
  2931. "shasum": "",
  2932. "mirrors": [
  2933. {
  2934. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2935. "preferred": true
  2936. }
  2937. ]
  2938. },
  2939. "require": {
  2940. "php": "^7.1.3",
  2941. "symfony/polyfill-mbstring": "~1.0",
  2942. "symfony/polyfill-php73": "^1.8",
  2943. "symfony/service-contracts": "^1.1"
  2944. },
  2945. "conflict": {
  2946. "symfony/dependency-injection": "<3.4",
  2947. "symfony/event-dispatcher": "<4.3",
  2948. "symfony/process": "<3.3"
  2949. },
  2950. "provide": {
  2951. "psr/log-implementation": "1.0"
  2952. },
  2953. "require-dev": {
  2954. "psr/log": "~1.0",
  2955. "symfony/config": "~3.4|~4.0",
  2956. "symfony/dependency-injection": "~3.4|~4.0",
  2957. "symfony/event-dispatcher": "^4.3",
  2958. "symfony/lock": "~3.4|~4.0",
  2959. "symfony/process": "~3.4|~4.0",
  2960. "symfony/var-dumper": "^4.3"
  2961. },
  2962. "suggest": {
  2963. "psr/log": "For using the console logger",
  2964. "symfony/event-dispatcher": "",
  2965. "symfony/lock": "",
  2966. "symfony/process": ""
  2967. },
  2968. "type": "library",
  2969. "extra": {
  2970. "branch-alias": {
  2971. "dev-master": "4.3-dev"
  2972. }
  2973. },
  2974. "autoload": {
  2975. "psr-4": {
  2976. "Symfony\\Component\\Console\\": ""
  2977. },
  2978. "exclude-from-classmap": [
  2979. "/Tests/"
  2980. ]
  2981. },
  2982. "notification-url": "https://packagist.org/downloads/",
  2983. "license": [
  2984. "MIT"
  2985. ],
  2986. "authors": [
  2987. {
  2988. "name": "Fabien Potencier",
  2989. "email": "fabien@symfony.com"
  2990. },
  2991. {
  2992. "name": "Symfony Community",
  2993. "homepage": "https://symfony.com/contributors"
  2994. }
  2995. ],
  2996. "description": "Symfony Console Component",
  2997. "homepage": "https://symfony.com",
  2998. "time": "2019-10-07T12:36:49+00:00"
  2999. },
  3000. {
  3001. "name": "symfony/css-selector",
  3002. "version": "v4.3.5",
  3003. "source": {
  3004. "type": "git",
  3005. "url": "https://github.com/symfony/css-selector.git",
  3006. "reference": "f4b3ff6a549d9ed28b2b0ecd1781bf67cf220ee9"
  3007. },
  3008. "dist": {
  3009. "type": "zip",
  3010. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f4b3ff6a549d9ed28b2b0ecd1781bf67cf220ee9",
  3011. "reference": "f4b3ff6a549d9ed28b2b0ecd1781bf67cf220ee9",
  3012. "shasum": "",
  3013. "mirrors": [
  3014. {
  3015. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3016. "preferred": true
  3017. }
  3018. ]
  3019. },
  3020. "require": {
  3021. "php": "^7.1.3"
  3022. },
  3023. "type": "library",
  3024. "extra": {
  3025. "branch-alias": {
  3026. "dev-master": "4.3-dev"
  3027. }
  3028. },
  3029. "autoload": {
  3030. "psr-4": {
  3031. "Symfony\\Component\\CssSelector\\": ""
  3032. },
  3033. "exclude-from-classmap": [
  3034. "/Tests/"
  3035. ]
  3036. },
  3037. "notification-url": "https://packagist.org/downloads/",
  3038. "license": [
  3039. "MIT"
  3040. ],
  3041. "authors": [
  3042. {
  3043. "name": "Fabien Potencier",
  3044. "email": "fabien@symfony.com"
  3045. },
  3046. {
  3047. "name": "Jean-François Simon",
  3048. "email": "jeanfrancois.simon@sensiolabs.com"
  3049. },
  3050. {
  3051. "name": "Symfony Community",
  3052. "homepage": "https://symfony.com/contributors"
  3053. }
  3054. ],
  3055. "description": "Symfony CssSelector Component",
  3056. "homepage": "https://symfony.com",
  3057. "time": "2019-10-02T08:36:26+00:00"
  3058. },
  3059. {
  3060. "name": "symfony/debug",
  3061. "version": "v4.3.5",
  3062. "source": {
  3063. "type": "git",
  3064. "url": "https://github.com/symfony/debug.git",
  3065. "reference": "cc5c1efd0edfcfd10b354750594a46b3dd2afbbe"
  3066. },
  3067. "dist": {
  3068. "type": "zip",
  3069. "url": "https://api.github.com/repos/symfony/debug/zipball/cc5c1efd0edfcfd10b354750594a46b3dd2afbbe",
  3070. "reference": "cc5c1efd0edfcfd10b354750594a46b3dd2afbbe",
  3071. "shasum": "",
  3072. "mirrors": [
  3073. {
  3074. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3075. "preferred": true
  3076. }
  3077. ]
  3078. },
  3079. "require": {
  3080. "php": "^7.1.3",
  3081. "psr/log": "~1.0"
  3082. },
  3083. "conflict": {
  3084. "symfony/http-kernel": "<3.4"
  3085. },
  3086. "require-dev": {
  3087. "symfony/http-kernel": "~3.4|~4.0"
  3088. },
  3089. "type": "library",
  3090. "extra": {
  3091. "branch-alias": {
  3092. "dev-master": "4.3-dev"
  3093. }
  3094. },
  3095. "autoload": {
  3096. "psr-4": {
  3097. "Symfony\\Component\\Debug\\": ""
  3098. },
  3099. "exclude-from-classmap": [
  3100. "/Tests/"
  3101. ]
  3102. },
  3103. "notification-url": "https://packagist.org/downloads/",
  3104. "license": [
  3105. "MIT"
  3106. ],
  3107. "authors": [
  3108. {
  3109. "name": "Fabien Potencier",
  3110. "email": "fabien@symfony.com"
  3111. },
  3112. {
  3113. "name": "Symfony Community",
  3114. "homepage": "https://symfony.com/contributors"
  3115. }
  3116. ],
  3117. "description": "Symfony Debug Component",
  3118. "homepage": "https://symfony.com",
  3119. "time": "2019-09-19T15:51:53+00:00"
  3120. },
  3121. {
  3122. "name": "symfony/event-dispatcher",
  3123. "version": "v4.3.5",
  3124. "source": {
  3125. "type": "git",
  3126. "url": "https://github.com/symfony/event-dispatcher.git",
  3127. "reference": "6229f58993e5a157f6096fc7145c0717d0be8807"
  3128. },
  3129. "dist": {
  3130. "type": "zip",
  3131. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/6229f58993e5a157f6096fc7145c0717d0be8807",
  3132. "reference": "6229f58993e5a157f6096fc7145c0717d0be8807",
  3133. "shasum": "",
  3134. "mirrors": [
  3135. {
  3136. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3137. "preferred": true
  3138. }
  3139. ]
  3140. },
  3141. "require": {
  3142. "php": "^7.1.3",
  3143. "symfony/event-dispatcher-contracts": "^1.1"
  3144. },
  3145. "conflict": {
  3146. "symfony/dependency-injection": "<3.4"
  3147. },
  3148. "provide": {
  3149. "psr/event-dispatcher-implementation": "1.0",
  3150. "symfony/event-dispatcher-implementation": "1.1"
  3151. },
  3152. "require-dev": {
  3153. "psr/log": "~1.0",
  3154. "symfony/config": "~3.4|~4.0",
  3155. "symfony/dependency-injection": "~3.4|~4.0",
  3156. "symfony/expression-language": "~3.4|~4.0",
  3157. "symfony/http-foundation": "^3.4|^4.0",
  3158. "symfony/service-contracts": "^1.1",
  3159. "symfony/stopwatch": "~3.4|~4.0"
  3160. },
  3161. "suggest": {
  3162. "symfony/dependency-injection": "",
  3163. "symfony/http-kernel": ""
  3164. },
  3165. "type": "library",
  3166. "extra": {
  3167. "branch-alias": {
  3168. "dev-master": "4.3-dev"
  3169. }
  3170. },
  3171. "autoload": {
  3172. "psr-4": {
  3173. "Symfony\\Component\\EventDispatcher\\": ""
  3174. },
  3175. "exclude-from-classmap": [
  3176. "/Tests/"
  3177. ]
  3178. },
  3179. "notification-url": "https://packagist.org/downloads/",
  3180. "license": [
  3181. "MIT"
  3182. ],
  3183. "authors": [
  3184. {
  3185. "name": "Fabien Potencier",
  3186. "email": "fabien@symfony.com"
  3187. },
  3188. {
  3189. "name": "Symfony Community",
  3190. "homepage": "https://symfony.com/contributors"
  3191. }
  3192. ],
  3193. "description": "Symfony EventDispatcher Component",
  3194. "homepage": "https://symfony.com",
  3195. "time": "2019-10-01T16:40:32+00:00"
  3196. },
  3197. {
  3198. "name": "symfony/event-dispatcher-contracts",
  3199. "version": "v1.1.7",
  3200. "source": {
  3201. "type": "git",
  3202. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3203. "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18"
  3204. },
  3205. "dist": {
  3206. "type": "zip",
  3207. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/c43ab685673fb6c8d84220c77897b1d6cdbe1d18",
  3208. "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18",
  3209. "shasum": "",
  3210. "mirrors": [
  3211. {
  3212. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3213. "preferred": true
  3214. }
  3215. ]
  3216. },
  3217. "require": {
  3218. "php": "^7.1.3"
  3219. },
  3220. "suggest": {
  3221. "psr/event-dispatcher": "",
  3222. "symfony/event-dispatcher-implementation": ""
  3223. },
  3224. "type": "library",
  3225. "extra": {
  3226. "branch-alias": {
  3227. "dev-master": "1.1-dev"
  3228. }
  3229. },
  3230. "autoload": {
  3231. "psr-4": {
  3232. "Symfony\\Contracts\\EventDispatcher\\": ""
  3233. }
  3234. },
  3235. "notification-url": "https://packagist.org/downloads/",
  3236. "license": [
  3237. "MIT"
  3238. ],
  3239. "authors": [
  3240. {
  3241. "name": "Nicolas Grekas",
  3242. "email": "p@tchwork.com"
  3243. },
  3244. {
  3245. "name": "Symfony Community",
  3246. "homepage": "https://symfony.com/contributors"
  3247. }
  3248. ],
  3249. "description": "Generic abstractions related to dispatching event",
  3250. "homepage": "https://symfony.com",
  3251. "keywords": [
  3252. "abstractions",
  3253. "contracts",
  3254. "decoupling",
  3255. "interfaces",
  3256. "interoperability",
  3257. "standards"
  3258. ],
  3259. "time": "2019-09-17T09:54:03+00:00"
  3260. },
  3261. {
  3262. "name": "symfony/finder",
  3263. "version": "v4.3.5",
  3264. "source": {
  3265. "type": "git",
  3266. "url": "https://github.com/symfony/finder.git",
  3267. "reference": "5e575faa95548d0586f6bedaeabec259714e44d1"
  3268. },
  3269. "dist": {
  3270. "type": "zip",
  3271. "url": "https://api.github.com/repos/symfony/finder/zipball/5e575faa95548d0586f6bedaeabec259714e44d1",
  3272. "reference": "5e575faa95548d0586f6bedaeabec259714e44d1",
  3273. "shasum": "",
  3274. "mirrors": [
  3275. {
  3276. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3277. "preferred": true
  3278. }
  3279. ]
  3280. },
  3281. "require": {
  3282. "php": "^7.1.3"
  3283. },
  3284. "type": "library",
  3285. "extra": {
  3286. "branch-alias": {
  3287. "dev-master": "4.3-dev"
  3288. }
  3289. },
  3290. "autoload": {
  3291. "psr-4": {
  3292. "Symfony\\Component\\Finder\\": ""
  3293. },
  3294. "exclude-from-classmap": [
  3295. "/Tests/"
  3296. ]
  3297. },
  3298. "notification-url": "https://packagist.org/downloads/",
  3299. "license": [
  3300. "MIT"
  3301. ],
  3302. "authors": [
  3303. {
  3304. "name": "Fabien Potencier",
  3305. "email": "fabien@symfony.com"
  3306. },
  3307. {
  3308. "name": "Symfony Community",
  3309. "homepage": "https://symfony.com/contributors"
  3310. }
  3311. ],
  3312. "description": "Symfony Finder Component",
  3313. "homepage": "https://symfony.com",
  3314. "time": "2019-09-16T11:29:48+00:00"
  3315. },
  3316. {
  3317. "name": "symfony/http-foundation",
  3318. "version": "v4.3.5",
  3319. "source": {
  3320. "type": "git",
  3321. "url": "https://github.com/symfony/http-foundation.git",
  3322. "reference": "76590ced16d4674780863471bae10452b79210a5"
  3323. },
  3324. "dist": {
  3325. "type": "zip",
  3326. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/76590ced16d4674780863471bae10452b79210a5",
  3327. "reference": "76590ced16d4674780863471bae10452b79210a5",
  3328. "shasum": "",
  3329. "mirrors": [
  3330. {
  3331. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3332. "preferred": true
  3333. }
  3334. ]
  3335. },
  3336. "require": {
  3337. "php": "^7.1.3",
  3338. "symfony/mime": "^4.3",
  3339. "symfony/polyfill-mbstring": "~1.1"
  3340. },
  3341. "require-dev": {
  3342. "predis/predis": "~1.0",
  3343. "symfony/expression-language": "~3.4|~4.0"
  3344. },
  3345. "type": "library",
  3346. "extra": {
  3347. "branch-alias": {
  3348. "dev-master": "4.3-dev"
  3349. }
  3350. },
  3351. "autoload": {
  3352. "psr-4": {
  3353. "Symfony\\Component\\HttpFoundation\\": ""
  3354. },
  3355. "exclude-from-classmap": [
  3356. "/Tests/"
  3357. ]
  3358. },
  3359. "notification-url": "https://packagist.org/downloads/",
  3360. "license": [
  3361. "MIT"
  3362. ],
  3363. "authors": [
  3364. {
  3365. "name": "Fabien Potencier",
  3366. "email": "fabien@symfony.com"
  3367. },
  3368. {
  3369. "name": "Symfony Community",
  3370. "homepage": "https://symfony.com/contributors"
  3371. }
  3372. ],
  3373. "description": "Symfony HttpFoundation Component",
  3374. "homepage": "https://symfony.com",
  3375. "time": "2019-10-04T19:48:13+00:00"
  3376. },
  3377. {
  3378. "name": "symfony/http-kernel",
  3379. "version": "v4.3.5",
  3380. "source": {
  3381. "type": "git",
  3382. "url": "https://github.com/symfony/http-kernel.git",
  3383. "reference": "5f08141850932e8019c01d8988bf3ed6367d2991"
  3384. },
  3385. "dist": {
  3386. "type": "zip",
  3387. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/5f08141850932e8019c01d8988bf3ed6367d2991",
  3388. "reference": "5f08141850932e8019c01d8988bf3ed6367d2991",
  3389. "shasum": "",
  3390. "mirrors": [
  3391. {
  3392. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3393. "preferred": true
  3394. }
  3395. ]
  3396. },
  3397. "require": {
  3398. "php": "^7.1.3",
  3399. "psr/log": "~1.0",
  3400. "symfony/debug": "~3.4|~4.0",
  3401. "symfony/event-dispatcher": "^4.3",
  3402. "symfony/http-foundation": "^4.1.1",
  3403. "symfony/polyfill-ctype": "~1.8",
  3404. "symfony/polyfill-php73": "^1.9"
  3405. },
  3406. "conflict": {
  3407. "symfony/browser-kit": "<4.3",
  3408. "symfony/config": "<3.4",
  3409. "symfony/dependency-injection": "<4.3",
  3410. "symfony/translation": "<4.2",
  3411. "symfony/var-dumper": "<4.1.1",
  3412. "twig/twig": "<1.34|<2.4,>=2"
  3413. },
  3414. "provide": {
  3415. "psr/log-implementation": "1.0"
  3416. },
  3417. "require-dev": {
  3418. "psr/cache": "~1.0",
  3419. "symfony/browser-kit": "^4.3",
  3420. "symfony/config": "~3.4|~4.0",
  3421. "symfony/console": "~3.4|~4.0",
  3422. "symfony/css-selector": "~3.4|~4.0",
  3423. "symfony/dependency-injection": "^4.3",
  3424. "symfony/dom-crawler": "~3.4|~4.0",
  3425. "symfony/expression-language": "~3.4|~4.0",
  3426. "symfony/finder": "~3.4|~4.0",
  3427. "symfony/process": "~3.4|~4.0",
  3428. "symfony/routing": "~3.4|~4.0",
  3429. "symfony/stopwatch": "~3.4|~4.0",
  3430. "symfony/templating": "~3.4|~4.0",
  3431. "symfony/translation": "~4.2",
  3432. "symfony/translation-contracts": "^1.1",
  3433. "symfony/var-dumper": "^4.1.1",
  3434. "twig/twig": "^1.34|^2.4"
  3435. },
  3436. "suggest": {
  3437. "symfony/browser-kit": "",
  3438. "symfony/config": "",
  3439. "symfony/console": "",
  3440. "symfony/dependency-injection": "",
  3441. "symfony/var-dumper": ""
  3442. },
  3443. "type": "library",
  3444. "extra": {
  3445. "branch-alias": {
  3446. "dev-master": "4.3-dev"
  3447. }
  3448. },
  3449. "autoload": {
  3450. "psr-4": {
  3451. "Symfony\\Component\\HttpKernel\\": ""
  3452. },
  3453. "exclude-from-classmap": [
  3454. "/Tests/"
  3455. ]
  3456. },
  3457. "notification-url": "https://packagist.org/downloads/",
  3458. "license": [
  3459. "MIT"
  3460. ],
  3461. "authors": [
  3462. {
  3463. "name": "Fabien Potencier",
  3464. "email": "fabien@symfony.com"
  3465. },
  3466. {
  3467. "name": "Symfony Community",
  3468. "homepage": "https://symfony.com/contributors"
  3469. }
  3470. ],
  3471. "description": "Symfony HttpKernel Component",
  3472. "homepage": "https://symfony.com",
  3473. "time": "2019-10-07T15:06:41+00:00"
  3474. },
  3475. {
  3476. "name": "symfony/mime",
  3477. "version": "v4.3.5",
  3478. "source": {
  3479. "type": "git",
  3480. "url": "https://github.com/symfony/mime.git",
  3481. "reference": "32f71570547b91879fdbd9cf50317d556ae86916"
  3482. },
  3483. "dist": {
  3484. "type": "zip",
  3485. "url": "https://api.github.com/repos/symfony/mime/zipball/32f71570547b91879fdbd9cf50317d556ae86916",
  3486. "reference": "32f71570547b91879fdbd9cf50317d556ae86916",
  3487. "shasum": "",
  3488. "mirrors": [
  3489. {
  3490. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3491. "preferred": true
  3492. }
  3493. ]
  3494. },
  3495. "require": {
  3496. "php": "^7.1.3",
  3497. "symfony/polyfill-intl-idn": "^1.10",
  3498. "symfony/polyfill-mbstring": "^1.0"
  3499. },
  3500. "require-dev": {
  3501. "egulias/email-validator": "^2.1.10",
  3502. "symfony/dependency-injection": "~3.4|^4.1"
  3503. },
  3504. "type": "library",
  3505. "extra": {
  3506. "branch-alias": {
  3507. "dev-master": "4.3-dev"
  3508. }
  3509. },
  3510. "autoload": {
  3511. "psr-4": {
  3512. "Symfony\\Component\\Mime\\": ""
  3513. },
  3514. "exclude-from-classmap": [
  3515. "/Tests/"
  3516. ]
  3517. },
  3518. "notification-url": "https://packagist.org/downloads/",
  3519. "license": [
  3520. "MIT"
  3521. ],
  3522. "authors": [
  3523. {
  3524. "name": "Fabien Potencier",
  3525. "email": "fabien@symfony.com"
  3526. },
  3527. {
  3528. "name": "Symfony Community",
  3529. "homepage": "https://symfony.com/contributors"
  3530. }
  3531. ],
  3532. "description": "A library to manipulate MIME messages",
  3533. "homepage": "https://symfony.com",
  3534. "keywords": [
  3535. "mime",
  3536. "mime-type"
  3537. ],
  3538. "time": "2019-09-19T17:00:15+00:00"
  3539. },
  3540. {
  3541. "name": "symfony/polyfill-ctype",
  3542. "version": "v1.12.0",
  3543. "source": {
  3544. "type": "git",
  3545. "url": "https://github.com/symfony/polyfill-ctype.git",
  3546. "reference": "550ebaac289296ce228a706d0867afc34687e3f4"
  3547. },
  3548. "dist": {
  3549. "type": "zip",
  3550. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/550ebaac289296ce228a706d0867afc34687e3f4",
  3551. "reference": "550ebaac289296ce228a706d0867afc34687e3f4",
  3552. "shasum": "",
  3553. "mirrors": [
  3554. {
  3555. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3556. "preferred": true
  3557. }
  3558. ]
  3559. },
  3560. "require": {
  3561. "php": ">=5.3.3"
  3562. },
  3563. "suggest": {
  3564. "ext-ctype": "For best performance"
  3565. },
  3566. "type": "library",
  3567. "extra": {
  3568. "branch-alias": {
  3569. "dev-master": "1.12-dev"
  3570. }
  3571. },
  3572. "autoload": {
  3573. "psr-4": {
  3574. "Symfony\\Polyfill\\Ctype\\": ""
  3575. },
  3576. "files": [
  3577. "bootstrap.php"
  3578. ]
  3579. },
  3580. "notification-url": "https://packagist.org/downloads/",
  3581. "license": [
  3582. "MIT"
  3583. ],
  3584. "authors": [
  3585. {
  3586. "name": "Gert de Pagter",
  3587. "email": "BackEndTea@gmail.com"
  3588. },
  3589. {
  3590. "name": "Symfony Community",
  3591. "homepage": "https://symfony.com/contributors"
  3592. }
  3593. ],
  3594. "description": "Symfony polyfill for ctype functions",
  3595. "homepage": "https://symfony.com",
  3596. "keywords": [
  3597. "compatibility",
  3598. "ctype",
  3599. "polyfill",
  3600. "portable"
  3601. ],
  3602. "time": "2019-08-06T08:03:45+00:00"
  3603. },
  3604. {
  3605. "name": "symfony/polyfill-iconv",
  3606. "version": "v1.12.0",
  3607. "source": {
  3608. "type": "git",
  3609. "url": "https://github.com/symfony/polyfill-iconv.git",
  3610. "reference": "685968b11e61a347c18bf25db32effa478be610f"
  3611. },
  3612. "dist": {
  3613. "type": "zip",
  3614. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/685968b11e61a347c18bf25db32effa478be610f",
  3615. "reference": "685968b11e61a347c18bf25db32effa478be610f",
  3616. "shasum": "",
  3617. "mirrors": [
  3618. {
  3619. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3620. "preferred": true
  3621. }
  3622. ]
  3623. },
  3624. "require": {
  3625. "php": ">=5.3.3"
  3626. },
  3627. "suggest": {
  3628. "ext-iconv": "For best performance"
  3629. },
  3630. "type": "library",
  3631. "extra": {
  3632. "branch-alias": {
  3633. "dev-master": "1.12-dev"
  3634. }
  3635. },
  3636. "autoload": {
  3637. "psr-4": {
  3638. "Symfony\\Polyfill\\Iconv\\": ""
  3639. },
  3640. "files": [
  3641. "bootstrap.php"
  3642. ]
  3643. },
  3644. "notification-url": "https://packagist.org/downloads/",
  3645. "license": [
  3646. "MIT"
  3647. ],
  3648. "authors": [
  3649. {
  3650. "name": "Nicolas Grekas",
  3651. "email": "p@tchwork.com"
  3652. },
  3653. {
  3654. "name": "Symfony Community",
  3655. "homepage": "https://symfony.com/contributors"
  3656. }
  3657. ],
  3658. "description": "Symfony polyfill for the Iconv extension",
  3659. "homepage": "https://symfony.com",
  3660. "keywords": [
  3661. "compatibility",
  3662. "iconv",
  3663. "polyfill",
  3664. "portable",
  3665. "shim"
  3666. ],
  3667. "time": "2019-08-06T08:03:45+00:00"
  3668. },
  3669. {
  3670. "name": "symfony/polyfill-intl-idn",
  3671. "version": "v1.12.0",
  3672. "source": {
  3673. "type": "git",
  3674. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  3675. "reference": "6af626ae6fa37d396dc90a399c0ff08e5cfc45b2"
  3676. },
  3677. "dist": {
  3678. "type": "zip",
  3679. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/6af626ae6fa37d396dc90a399c0ff08e5cfc45b2",
  3680. "reference": "6af626ae6fa37d396dc90a399c0ff08e5cfc45b2",
  3681. "shasum": "",
  3682. "mirrors": [
  3683. {
  3684. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3685. "preferred": true
  3686. }
  3687. ]
  3688. },
  3689. "require": {
  3690. "php": ">=5.3.3",
  3691. "symfony/polyfill-mbstring": "^1.3",
  3692. "symfony/polyfill-php72": "^1.9"
  3693. },
  3694. "suggest": {
  3695. "ext-intl": "For best performance"
  3696. },
  3697. "type": "library",
  3698. "extra": {
  3699. "branch-alias": {
  3700. "dev-master": "1.12-dev"
  3701. }
  3702. },
  3703. "autoload": {
  3704. "psr-4": {
  3705. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3706. },
  3707. "files": [
  3708. "bootstrap.php"
  3709. ]
  3710. },
  3711. "notification-url": "https://packagist.org/downloads/",
  3712. "license": [
  3713. "MIT"
  3714. ],
  3715. "authors": [
  3716. {
  3717. "name": "Laurent Bassin",
  3718. "email": "laurent@bassin.info"
  3719. },
  3720. {
  3721. "name": "Symfony Community",
  3722. "homepage": "https://symfony.com/contributors"
  3723. }
  3724. ],
  3725. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  3726. "homepage": "https://symfony.com",
  3727. "keywords": [
  3728. "compatibility",
  3729. "idn",
  3730. "intl",
  3731. "polyfill",
  3732. "portable",
  3733. "shim"
  3734. ],
  3735. "time": "2019-08-06T08:03:45+00:00"
  3736. },
  3737. {
  3738. "name": "symfony/polyfill-mbstring",
  3739. "version": "v1.12.0",
  3740. "source": {
  3741. "type": "git",
  3742. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3743. "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17"
  3744. },
  3745. "dist": {
  3746. "type": "zip",
  3747. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/b42a2f66e8f1b15ccf25652c3424265923eb4f17",
  3748. "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17",
  3749. "shasum": "",
  3750. "mirrors": [
  3751. {
  3752. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3753. "preferred": true
  3754. }
  3755. ]
  3756. },
  3757. "require": {
  3758. "php": ">=5.3.3"
  3759. },
  3760. "suggest": {
  3761. "ext-mbstring": "For best performance"
  3762. },
  3763. "type": "library",
  3764. "extra": {
  3765. "branch-alias": {
  3766. "dev-master": "1.12-dev"
  3767. }
  3768. },
  3769. "autoload": {
  3770. "psr-4": {
  3771. "Symfony\\Polyfill\\Mbstring\\": ""
  3772. },
  3773. "files": [
  3774. "bootstrap.php"
  3775. ]
  3776. },
  3777. "notification-url": "https://packagist.org/downloads/",
  3778. "license": [
  3779. "MIT"
  3780. ],
  3781. "authors": [
  3782. {
  3783. "name": "Nicolas Grekas",
  3784. "email": "p@tchwork.com"
  3785. },
  3786. {
  3787. "name": "Symfony Community",
  3788. "homepage": "https://symfony.com/contributors"
  3789. }
  3790. ],
  3791. "description": "Symfony polyfill for the Mbstring extension",
  3792. "homepage": "https://symfony.com",
  3793. "keywords": [
  3794. "compatibility",
  3795. "mbstring",
  3796. "polyfill",
  3797. "portable",
  3798. "shim"
  3799. ],
  3800. "time": "2019-08-06T08:03:45+00:00"
  3801. },
  3802. {
  3803. "name": "symfony/polyfill-php72",
  3804. "version": "v1.12.0",
  3805. "source": {
  3806. "type": "git",
  3807. "url": "https://github.com/symfony/polyfill-php72.git",
  3808. "reference": "04ce3335667451138df4307d6a9b61565560199e"
  3809. },
  3810. "dist": {
  3811. "type": "zip",
  3812. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/04ce3335667451138df4307d6a9b61565560199e",
  3813. "reference": "04ce3335667451138df4307d6a9b61565560199e",
  3814. "shasum": "",
  3815. "mirrors": [
  3816. {
  3817. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3818. "preferred": true
  3819. }
  3820. ]
  3821. },
  3822. "require": {
  3823. "php": ">=5.3.3"
  3824. },
  3825. "type": "library",
  3826. "extra": {
  3827. "branch-alias": {
  3828. "dev-master": "1.12-dev"
  3829. }
  3830. },
  3831. "autoload": {
  3832. "psr-4": {
  3833. "Symfony\\Polyfill\\Php72\\": ""
  3834. },
  3835. "files": [
  3836. "bootstrap.php"
  3837. ]
  3838. },
  3839. "notification-url": "https://packagist.org/downloads/",
  3840. "license": [
  3841. "MIT"
  3842. ],
  3843. "authors": [
  3844. {
  3845. "name": "Nicolas Grekas",
  3846. "email": "p@tchwork.com"
  3847. },
  3848. {
  3849. "name": "Symfony Community",
  3850. "homepage": "https://symfony.com/contributors"
  3851. }
  3852. ],
  3853. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  3854. "homepage": "https://symfony.com",
  3855. "keywords": [
  3856. "compatibility",
  3857. "polyfill",
  3858. "portable",
  3859. "shim"
  3860. ],
  3861. "time": "2019-08-06T08:03:45+00:00"
  3862. },
  3863. {
  3864. "name": "symfony/polyfill-php73",
  3865. "version": "v1.12.0",
  3866. "source": {
  3867. "type": "git",
  3868. "url": "https://github.com/symfony/polyfill-php73.git",
  3869. "reference": "2ceb49eaccb9352bff54d22570276bb75ba4a188"
  3870. },
  3871. "dist": {
  3872. "type": "zip",
  3873. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/2ceb49eaccb9352bff54d22570276bb75ba4a188",
  3874. "reference": "2ceb49eaccb9352bff54d22570276bb75ba4a188",
  3875. "shasum": "",
  3876. "mirrors": [
  3877. {
  3878. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3879. "preferred": true
  3880. }
  3881. ]
  3882. },
  3883. "require": {
  3884. "php": ">=5.3.3"
  3885. },
  3886. "type": "library",
  3887. "extra": {
  3888. "branch-alias": {
  3889. "dev-master": "1.12-dev"
  3890. }
  3891. },
  3892. "autoload": {
  3893. "psr-4": {
  3894. "Symfony\\Polyfill\\Php73\\": ""
  3895. },
  3896. "files": [
  3897. "bootstrap.php"
  3898. ],
  3899. "classmap": [
  3900. "Resources/stubs"
  3901. ]
  3902. },
  3903. "notification-url": "https://packagist.org/downloads/",
  3904. "license": [
  3905. "MIT"
  3906. ],
  3907. "authors": [
  3908. {
  3909. "name": "Nicolas Grekas",
  3910. "email": "p@tchwork.com"
  3911. },
  3912. {
  3913. "name": "Symfony Community",
  3914. "homepage": "https://symfony.com/contributors"
  3915. }
  3916. ],
  3917. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  3918. "homepage": "https://symfony.com",
  3919. "keywords": [
  3920. "compatibility",
  3921. "polyfill",
  3922. "portable",
  3923. "shim"
  3924. ],
  3925. "time": "2019-08-06T08:03:45+00:00"
  3926. },
  3927. {
  3928. "name": "symfony/process",
  3929. "version": "v4.3.5",
  3930. "source": {
  3931. "type": "git",
  3932. "url": "https://github.com/symfony/process.git",
  3933. "reference": "50556892f3cc47d4200bfd1075314139c4c9ff4b"
  3934. },
  3935. "dist": {
  3936. "type": "zip",
  3937. "url": "https://api.github.com/repos/symfony/process/zipball/50556892f3cc47d4200bfd1075314139c4c9ff4b",
  3938. "reference": "50556892f3cc47d4200bfd1075314139c4c9ff4b",
  3939. "shasum": "",
  3940. "mirrors": [
  3941. {
  3942. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3943. "preferred": true
  3944. }
  3945. ]
  3946. },
  3947. "require": {
  3948. "php": "^7.1.3"
  3949. },
  3950. "type": "library",
  3951. "extra": {
  3952. "branch-alias": {
  3953. "dev-master": "4.3-dev"
  3954. }
  3955. },
  3956. "autoload": {
  3957. "psr-4": {
  3958. "Symfony\\Component\\Process\\": ""
  3959. },
  3960. "exclude-from-classmap": [
  3961. "/Tests/"
  3962. ]
  3963. },
  3964. "notification-url": "https://packagist.org/downloads/",
  3965. "license": [
  3966. "MIT"
  3967. ],
  3968. "authors": [
  3969. {
  3970. "name": "Fabien Potencier",
  3971. "email": "fabien@symfony.com"
  3972. },
  3973. {
  3974. "name": "Symfony Community",
  3975. "homepage": "https://symfony.com/contributors"
  3976. }
  3977. ],
  3978. "description": "Symfony Process Component",
  3979. "homepage": "https://symfony.com",
  3980. "time": "2019-09-26T21:17:10+00:00"
  3981. },
  3982. {
  3983. "name": "symfony/routing",
  3984. "version": "v4.3.5",
  3985. "source": {
  3986. "type": "git",
  3987. "url": "https://github.com/symfony/routing.git",
  3988. "reference": "3b174ef04fe66696524efad1e5f7a6c663d822ea"
  3989. },
  3990. "dist": {
  3991. "type": "zip",
  3992. "url": "https://api.github.com/repos/symfony/routing/zipball/3b174ef04fe66696524efad1e5f7a6c663d822ea",
  3993. "reference": "3b174ef04fe66696524efad1e5f7a6c663d822ea",
  3994. "shasum": "",
  3995. "mirrors": [
  3996. {
  3997. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3998. "preferred": true
  3999. }
  4000. ]
  4001. },
  4002. "require": {
  4003. "php": "^7.1.3"
  4004. },
  4005. "conflict": {
  4006. "symfony/config": "<4.2",
  4007. "symfony/dependency-injection": "<3.4",
  4008. "symfony/yaml": "<3.4"
  4009. },
  4010. "require-dev": {
  4011. "doctrine/annotations": "~1.2",
  4012. "psr/log": "~1.0",
  4013. "symfony/config": "~4.2",
  4014. "symfony/dependency-injection": "~3.4|~4.0",
  4015. "symfony/expression-language": "~3.4|~4.0",
  4016. "symfony/http-foundation": "~3.4|~4.0",
  4017. "symfony/yaml": "~3.4|~4.0"
  4018. },
  4019. "suggest": {
  4020. "doctrine/annotations": "For using the annotation loader",
  4021. "symfony/config": "For using the all-in-one router or any loader",
  4022. "symfony/expression-language": "For using expression matching",
  4023. "symfony/http-foundation": "For using a Symfony Request object",
  4024. "symfony/yaml": "For using the YAML loader"
  4025. },
  4026. "type": "library",
  4027. "extra": {
  4028. "branch-alias": {
  4029. "dev-master": "4.3-dev"
  4030. }
  4031. },
  4032. "autoload": {
  4033. "psr-4": {
  4034. "Symfony\\Component\\Routing\\": ""
  4035. },
  4036. "exclude-from-classmap": [
  4037. "/Tests/"
  4038. ]
  4039. },
  4040. "notification-url": "https://packagist.org/downloads/",
  4041. "license": [
  4042. "MIT"
  4043. ],
  4044. "authors": [
  4045. {
  4046. "name": "Fabien Potencier",
  4047. "email": "fabien@symfony.com"
  4048. },
  4049. {
  4050. "name": "Symfony Community",
  4051. "homepage": "https://symfony.com/contributors"
  4052. }
  4053. ],
  4054. "description": "Symfony Routing Component",
  4055. "homepage": "https://symfony.com",
  4056. "keywords": [
  4057. "router",
  4058. "routing",
  4059. "uri",
  4060. "url"
  4061. ],
  4062. "time": "2019-10-04T20:57:10+00:00"
  4063. },
  4064. {
  4065. "name": "symfony/service-contracts",
  4066. "version": "v1.1.7",
  4067. "source": {
  4068. "type": "git",
  4069. "url": "https://github.com/symfony/service-contracts.git",
  4070. "reference": "ffcde9615dc5bb4825b9f6aed07716f1f57faae0"
  4071. },
  4072. "dist": {
  4073. "type": "zip",
  4074. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/ffcde9615dc5bb4825b9f6aed07716f1f57faae0",
  4075. "reference": "ffcde9615dc5bb4825b9f6aed07716f1f57faae0",
  4076. "shasum": "",
  4077. "mirrors": [
  4078. {
  4079. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4080. "preferred": true
  4081. }
  4082. ]
  4083. },
  4084. "require": {
  4085. "php": "^7.1.3",
  4086. "psr/container": "^1.0"
  4087. },
  4088. "suggest": {
  4089. "symfony/service-implementation": ""
  4090. },
  4091. "type": "library",
  4092. "extra": {
  4093. "branch-alias": {
  4094. "dev-master": "1.1-dev"
  4095. }
  4096. },
  4097. "autoload": {
  4098. "psr-4": {
  4099. "Symfony\\Contracts\\Service\\": ""
  4100. }
  4101. },
  4102. "notification-url": "https://packagist.org/downloads/",
  4103. "license": [
  4104. "MIT"
  4105. ],
  4106. "authors": [
  4107. {
  4108. "name": "Nicolas Grekas",
  4109. "email": "p@tchwork.com"
  4110. },
  4111. {
  4112. "name": "Symfony Community",
  4113. "homepage": "https://symfony.com/contributors"
  4114. }
  4115. ],
  4116. "description": "Generic abstractions related to writing services",
  4117. "homepage": "https://symfony.com",
  4118. "keywords": [
  4119. "abstractions",
  4120. "contracts",
  4121. "decoupling",
  4122. "interfaces",
  4123. "interoperability",
  4124. "standards"
  4125. ],
  4126. "time": "2019-09-17T11:12:18+00:00"
  4127. },
  4128. {
  4129. "name": "symfony/translation",
  4130. "version": "v4.3.5",
  4131. "source": {
  4132. "type": "git",
  4133. "url": "https://github.com/symfony/translation.git",
  4134. "reference": "fe6193b066c457c144333c06aaa869a2d42a167f"
  4135. },
  4136. "dist": {
  4137. "type": "zip",
  4138. "url": "https://api.github.com/repos/symfony/translation/zipball/fe6193b066c457c144333c06aaa869a2d42a167f",
  4139. "reference": "fe6193b066c457c144333c06aaa869a2d42a167f",
  4140. "shasum": "",
  4141. "mirrors": [
  4142. {
  4143. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4144. "preferred": true
  4145. }
  4146. ]
  4147. },
  4148. "require": {
  4149. "php": "^7.1.3",
  4150. "symfony/polyfill-mbstring": "~1.0",
  4151. "symfony/translation-contracts": "^1.1.6"
  4152. },
  4153. "conflict": {
  4154. "symfony/config": "<3.4",
  4155. "symfony/dependency-injection": "<3.4",
  4156. "symfony/yaml": "<3.4"
  4157. },
  4158. "provide": {
  4159. "symfony/translation-implementation": "1.0"
  4160. },
  4161. "require-dev": {
  4162. "psr/log": "~1.0",
  4163. "symfony/config": "~3.4|~4.0",
  4164. "symfony/console": "~3.4|~4.0",
  4165. "symfony/dependency-injection": "~3.4|~4.0",
  4166. "symfony/finder": "~2.8|~3.0|~4.0",
  4167. "symfony/http-kernel": "~3.4|~4.0",
  4168. "symfony/intl": "~3.4|~4.0",
  4169. "symfony/service-contracts": "^1.1.2",
  4170. "symfony/var-dumper": "~3.4|~4.0",
  4171. "symfony/yaml": "~3.4|~4.0"
  4172. },
  4173. "suggest": {
  4174. "psr/log-implementation": "To use logging capability in translator",
  4175. "symfony/config": "",
  4176. "symfony/yaml": ""
  4177. },
  4178. "type": "library",
  4179. "extra": {
  4180. "branch-alias": {
  4181. "dev-master": "4.3-dev"
  4182. }
  4183. },
  4184. "autoload": {
  4185. "psr-4": {
  4186. "Symfony\\Component\\Translation\\": ""
  4187. },
  4188. "exclude-from-classmap": [
  4189. "/Tests/"
  4190. ]
  4191. },
  4192. "notification-url": "https://packagist.org/downloads/",
  4193. "license": [
  4194. "MIT"
  4195. ],
  4196. "authors": [
  4197. {
  4198. "name": "Fabien Potencier",
  4199. "email": "fabien@symfony.com"
  4200. },
  4201. {
  4202. "name": "Symfony Community",
  4203. "homepage": "https://symfony.com/contributors"
  4204. }
  4205. ],
  4206. "description": "Symfony Translation Component",
  4207. "homepage": "https://symfony.com",
  4208. "time": "2019-09-27T14:37:39+00:00"
  4209. },
  4210. {
  4211. "name": "symfony/translation-contracts",
  4212. "version": "v1.1.7",
  4213. "source": {
  4214. "type": "git",
  4215. "url": "https://github.com/symfony/translation-contracts.git",
  4216. "reference": "364518c132c95642e530d9b2d217acbc2ccac3e6"
  4217. },
  4218. "dist": {
  4219. "type": "zip",
  4220. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/364518c132c95642e530d9b2d217acbc2ccac3e6",
  4221. "reference": "364518c132c95642e530d9b2d217acbc2ccac3e6",
  4222. "shasum": "",
  4223. "mirrors": [
  4224. {
  4225. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4226. "preferred": true
  4227. }
  4228. ]
  4229. },
  4230. "require": {
  4231. "php": "^7.1.3"
  4232. },
  4233. "suggest": {
  4234. "symfony/translation-implementation": ""
  4235. },
  4236. "type": "library",
  4237. "extra": {
  4238. "branch-alias": {
  4239. "dev-master": "1.1-dev"
  4240. }
  4241. },
  4242. "autoload": {
  4243. "psr-4": {
  4244. "Symfony\\Contracts\\Translation\\": ""
  4245. }
  4246. },
  4247. "notification-url": "https://packagist.org/downloads/",
  4248. "license": [
  4249. "MIT"
  4250. ],
  4251. "authors": [
  4252. {
  4253. "name": "Nicolas Grekas",
  4254. "email": "p@tchwork.com"
  4255. },
  4256. {
  4257. "name": "Symfony Community",
  4258. "homepage": "https://symfony.com/contributors"
  4259. }
  4260. ],
  4261. "description": "Generic abstractions related to translation",
  4262. "homepage": "https://symfony.com",
  4263. "keywords": [
  4264. "abstractions",
  4265. "contracts",
  4266. "decoupling",
  4267. "interfaces",
  4268. "interoperability",
  4269. "standards"
  4270. ],
  4271. "time": "2019-09-17T11:12:18+00:00"
  4272. },
  4273. {
  4274. "name": "symfony/var-dumper",
  4275. "version": "v4.3.5",
  4276. "source": {
  4277. "type": "git",
  4278. "url": "https://github.com/symfony/var-dumper.git",
  4279. "reference": "bde8957fc415fdc6964f33916a3755737744ff05"
  4280. },
  4281. "dist": {
  4282. "type": "zip",
  4283. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/bde8957fc415fdc6964f33916a3755737744ff05",
  4284. "reference": "bde8957fc415fdc6964f33916a3755737744ff05",
  4285. "shasum": "",
  4286. "mirrors": [
  4287. {
  4288. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4289. "preferred": true
  4290. }
  4291. ]
  4292. },
  4293. "require": {
  4294. "php": "^7.1.3",
  4295. "symfony/polyfill-mbstring": "~1.0",
  4296. "symfony/polyfill-php72": "~1.5"
  4297. },
  4298. "conflict": {
  4299. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  4300. "symfony/console": "<3.4"
  4301. },
  4302. "require-dev": {
  4303. "ext-iconv": "*",
  4304. "symfony/console": "~3.4|~4.0",
  4305. "symfony/process": "~3.4|~4.0",
  4306. "twig/twig": "~1.34|~2.4"
  4307. },
  4308. "suggest": {
  4309. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  4310. "ext-intl": "To show region name in time zone dump",
  4311. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  4312. },
  4313. "bin": [
  4314. "Resources/bin/var-dump-server"
  4315. ],
  4316. "type": "library",
  4317. "extra": {
  4318. "branch-alias": {
  4319. "dev-master": "4.3-dev"
  4320. }
  4321. },
  4322. "autoload": {
  4323. "files": [
  4324. "Resources/functions/dump.php"
  4325. ],
  4326. "psr-4": {
  4327. "Symfony\\Component\\VarDumper\\": ""
  4328. },
  4329. "exclude-from-classmap": [
  4330. "/Tests/"
  4331. ]
  4332. },
  4333. "notification-url": "https://packagist.org/downloads/",
  4334. "license": [
  4335. "MIT"
  4336. ],
  4337. "authors": [
  4338. {
  4339. "name": "Nicolas Grekas",
  4340. "email": "p@tchwork.com"
  4341. },
  4342. {
  4343. "name": "Symfony Community",
  4344. "homepage": "https://symfony.com/contributors"
  4345. }
  4346. ],
  4347. "description": "Symfony mechanism for exploring and dumping PHP variables",
  4348. "homepage": "https://symfony.com",
  4349. "keywords": [
  4350. "debug",
  4351. "dump"
  4352. ],
  4353. "time": "2019-10-04T19:48:13+00:00"
  4354. },
  4355. {
  4356. "name": "tightenco/collect",
  4357. "version": "v5.8.35",
  4358. "source": {
  4359. "type": "git",
  4360. "url": "https://github.com/tightenco/collect.git",
  4361. "reference": "c93a7039e6207ad533a09109838fe80933fcc72c"
  4362. },
  4363. "dist": {
  4364. "type": "zip",
  4365. "url": "https://api.github.com/repos/tightenco/collect/zipball/c93a7039e6207ad533a09109838fe80933fcc72c",
  4366. "reference": "c93a7039e6207ad533a09109838fe80933fcc72c",
  4367. "shasum": "",
  4368. "mirrors": [
  4369. {
  4370. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4371. "preferred": true
  4372. }
  4373. ]
  4374. },
  4375. "require": {
  4376. "php": "^7.1.3",
  4377. "symfony/var-dumper": ">=3.4 <5"
  4378. },
  4379. "require-dev": {
  4380. "mockery/mockery": "^1.0",
  4381. "nesbot/carbon": "^1.26.3",
  4382. "phpunit/phpunit": "^7.0"
  4383. },
  4384. "type": "library",
  4385. "autoload": {
  4386. "files": [
  4387. "src/Collect/Support/helpers.php",
  4388. "src/Collect/Support/alias.php"
  4389. ],
  4390. "psr-4": {
  4391. "Tightenco\\Collect\\": "src/Collect"
  4392. }
  4393. },
  4394. "notification-url": "https://packagist.org/downloads/",
  4395. "license": [
  4396. "MIT"
  4397. ],
  4398. "authors": [
  4399. {
  4400. "name": "Taylor Otwell",
  4401. "email": "taylorotwell@gmail.com"
  4402. }
  4403. ],
  4404. "description": "Collect - Illuminate Collections as a separate package.",
  4405. "keywords": [
  4406. "collection",
  4407. "laravel"
  4408. ],
  4409. "time": "2019-09-17T18:57:01+00:00"
  4410. },
  4411. {
  4412. "name": "tijsverkoyen/css-to-inline-styles",
  4413. "version": "2.2.1",
  4414. "source": {
  4415. "type": "git",
  4416. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  4417. "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757"
  4418. },
  4419. "dist": {
  4420. "type": "zip",
  4421. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
  4422. "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
  4423. "shasum": "",
  4424. "mirrors": [
  4425. {
  4426. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4427. "preferred": true
  4428. }
  4429. ]
  4430. },
  4431. "require": {
  4432. "php": "^5.5 || ^7.0",
  4433. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0"
  4434. },
  4435. "require-dev": {
  4436. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  4437. },
  4438. "type": "library",
  4439. "extra": {
  4440. "branch-alias": {
  4441. "dev-master": "2.2.x-dev"
  4442. }
  4443. },
  4444. "autoload": {
  4445. "psr-4": {
  4446. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  4447. }
  4448. },
  4449. "notification-url": "https://packagist.org/downloads/",
  4450. "license": [
  4451. "BSD-3-Clause"
  4452. ],
  4453. "authors": [
  4454. {
  4455. "name": "Tijs Verkoyen",
  4456. "email": "css_to_inline_styles@verkoyen.eu",
  4457. "role": "Developer"
  4458. }
  4459. ],
  4460. "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.",
  4461. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  4462. "time": "2017-11-27T11:13:29+00:00"
  4463. },
  4464. {
  4465. "name": "vlucas/phpdotenv",
  4466. "version": "v3.6.0",
  4467. "source": {
  4468. "type": "git",
  4469. "url": "https://github.com/vlucas/phpdotenv.git",
  4470. "reference": "1bdf24f065975594f6a117f0f1f6cabf1333b156"
  4471. },
  4472. "dist": {
  4473. "type": "zip",
  4474. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1bdf24f065975594f6a117f0f1f6cabf1333b156",
  4475. "reference": "1bdf24f065975594f6a117f0f1f6cabf1333b156",
  4476. "shasum": "",
  4477. "mirrors": [
  4478. {
  4479. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4480. "preferred": true
  4481. }
  4482. ]
  4483. },
  4484. "require": {
  4485. "php": "^5.4 || ^7.0",
  4486. "phpoption/phpoption": "^1.5",
  4487. "symfony/polyfill-ctype": "^1.9"
  4488. },
  4489. "require-dev": {
  4490. "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0 || ^7.0"
  4491. },
  4492. "type": "library",
  4493. "extra": {
  4494. "branch-alias": {
  4495. "dev-master": "3.6-dev"
  4496. }
  4497. },
  4498. "autoload": {
  4499. "psr-4": {
  4500. "Dotenv\\": "src/"
  4501. }
  4502. },
  4503. "notification-url": "https://packagist.org/downloads/",
  4504. "license": [
  4505. "BSD-3-Clause"
  4506. ],
  4507. "authors": [
  4508. {
  4509. "name": "Graham Campbell",
  4510. "email": "graham@alt-three.com",
  4511. "homepage": "https://gjcampbell.co.uk/"
  4512. },
  4513. {
  4514. "name": "Vance Lucas",
  4515. "email": "vance@vancelucas.com",
  4516. "homepage": "https://vancelucas.com/"
  4517. }
  4518. ],
  4519. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  4520. "keywords": [
  4521. "dotenv",
  4522. "env",
  4523. "environment"
  4524. ],
  4525. "time": "2019-09-10T21:37:39+00:00"
  4526. }
  4527. ],
  4528. "packages-dev": [
  4529. {
  4530. "name": "barryvdh/laravel-debugbar",
  4531. "version": "v3.2.8",
  4532. "source": {
  4533. "type": "git",
  4534. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  4535. "reference": "18208d64897ab732f6c04a19b319fe8f1d57a9c0"
  4536. },
  4537. "dist": {
  4538. "type": "zip",
  4539. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/18208d64897ab732f6c04a19b319fe8f1d57a9c0",
  4540. "reference": "18208d64897ab732f6c04a19b319fe8f1d57a9c0",
  4541. "shasum": "",
  4542. "mirrors": [
  4543. {
  4544. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4545. "preferred": true
  4546. }
  4547. ]
  4548. },
  4549. "require": {
  4550. "illuminate/routing": "^5.5|^6",
  4551. "illuminate/session": "^5.5|^6",
  4552. "illuminate/support": "^5.5|^6",
  4553. "maximebf/debugbar": "~1.15.0",
  4554. "php": ">=7.0",
  4555. "symfony/debug": "^3|^4",
  4556. "symfony/finder": "^3|^4"
  4557. },
  4558. "require-dev": {
  4559. "laravel/framework": "5.5.x"
  4560. },
  4561. "type": "library",
  4562. "extra": {
  4563. "branch-alias": {
  4564. "dev-master": "3.2-dev"
  4565. },
  4566. "laravel": {
  4567. "providers": [
  4568. "Barryvdh\\Debugbar\\ServiceProvider"
  4569. ],
  4570. "aliases": {
  4571. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  4572. }
  4573. }
  4574. },
  4575. "autoload": {
  4576. "psr-4": {
  4577. "Barryvdh\\Debugbar\\": "src/"
  4578. },
  4579. "files": [
  4580. "src/helpers.php"
  4581. ]
  4582. },
  4583. "notification-url": "https://packagist.org/downloads/",
  4584. "license": [
  4585. "MIT"
  4586. ],
  4587. "authors": [
  4588. {
  4589. "name": "Barry vd. Heuvel",
  4590. "email": "barryvdh@gmail.com"
  4591. }
  4592. ],
  4593. "description": "PHP Debugbar integration for Laravel",
  4594. "keywords": [
  4595. "debug",
  4596. "debugbar",
  4597. "laravel",
  4598. "profiler",
  4599. "webprofiler"
  4600. ],
  4601. "time": "2019-08-29T07:01:03+00:00"
  4602. },
  4603. {
  4604. "name": "beyondcode/laravel-dump-server",
  4605. "version": "1.3.0",
  4606. "source": {
  4607. "type": "git",
  4608. "url": "https://github.com/beyondcode/laravel-dump-server.git",
  4609. "reference": "fcc88fa66895f8c1ff83f6145a5eff5fa2a0739a"
  4610. },
  4611. "dist": {
  4612. "type": "zip",
  4613. "url": "https://api.github.com/repos/beyondcode/laravel-dump-server/zipball/fcc88fa66895f8c1ff83f6145a5eff5fa2a0739a",
  4614. "reference": "fcc88fa66895f8c1ff83f6145a5eff5fa2a0739a",
  4615. "shasum": "",
  4616. "mirrors": [
  4617. {
  4618. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4619. "preferred": true
  4620. }
  4621. ]
  4622. },
  4623. "require": {
  4624. "illuminate/console": "5.6.*|5.7.*|5.8.*|^6.0",
  4625. "illuminate/http": "5.6.*|5.7.*|5.8.*|^6.0",
  4626. "illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0",
  4627. "php": "^7.1",
  4628. "symfony/var-dumper": "^4.1.1"
  4629. },
  4630. "require-dev": {
  4631. "larapack/dd": "^1.0",
  4632. "phpunit/phpunit": "^7.0"
  4633. },
  4634. "type": "library",
  4635. "extra": {
  4636. "laravel": {
  4637. "providers": [
  4638. "BeyondCode\\DumpServer\\DumpServerServiceProvider"
  4639. ]
  4640. }
  4641. },
  4642. "autoload": {
  4643. "psr-4": {
  4644. "BeyondCode\\DumpServer\\": "src"
  4645. },
  4646. "files": [
  4647. "helpers.php"
  4648. ]
  4649. },
  4650. "notification-url": "https://packagist.org/downloads/",
  4651. "license": [
  4652. "MIT"
  4653. ],
  4654. "authors": [
  4655. {
  4656. "name": "Marcel Pociot",
  4657. "email": "marcel@beyondco.de",
  4658. "homepage": "https://beyondco.de",
  4659. "role": "Developer"
  4660. }
  4661. ],
  4662. "description": "Symfony Var-Dump Server for Laravel",
  4663. "homepage": "https://github.com/beyondcode/laravel-dump-server",
  4664. "keywords": [
  4665. "beyondcode",
  4666. "laravel-dump-server"
  4667. ],
  4668. "time": "2019-08-11T13:17:40+00:00"
  4669. },
  4670. {
  4671. "name": "doctrine/instantiator",
  4672. "version": "1.2.0",
  4673. "source": {
  4674. "type": "git",
  4675. "url": "https://github.com/doctrine/instantiator.git",
  4676. "reference": "a2c590166b2133a4633738648b6b064edae0814a"
  4677. },
  4678. "dist": {
  4679. "type": "zip",
  4680. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/a2c590166b2133a4633738648b6b064edae0814a",
  4681. "reference": "a2c590166b2133a4633738648b6b064edae0814a",
  4682. "shasum": "",
  4683. "mirrors": [
  4684. {
  4685. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4686. "preferred": true
  4687. }
  4688. ]
  4689. },
  4690. "require": {
  4691. "php": "^7.1"
  4692. },
  4693. "require-dev": {
  4694. "doctrine/coding-standard": "^6.0",
  4695. "ext-pdo": "*",
  4696. "ext-phar": "*",
  4697. "phpbench/phpbench": "^0.13",
  4698. "phpstan/phpstan-phpunit": "^0.11",
  4699. "phpstan/phpstan-shim": "^0.11",
  4700. "phpunit/phpunit": "^7.0"
  4701. },
  4702. "type": "library",
  4703. "extra": {
  4704. "branch-alias": {
  4705. "dev-master": "1.2.x-dev"
  4706. }
  4707. },
  4708. "autoload": {
  4709. "psr-4": {
  4710. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  4711. }
  4712. },
  4713. "notification-url": "https://packagist.org/downloads/",
  4714. "license": [
  4715. "MIT"
  4716. ],
  4717. "authors": [
  4718. {
  4719. "name": "Marco Pivetta",
  4720. "email": "ocramius@gmail.com",
  4721. "homepage": "http://ocramius.github.com/"
  4722. }
  4723. ],
  4724. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  4725. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  4726. "keywords": [
  4727. "constructor",
  4728. "instantiate"
  4729. ],
  4730. "time": "2019-03-17T17:37:11+00:00"
  4731. },
  4732. {
  4733. "name": "filp/whoops",
  4734. "version": "2.5.0",
  4735. "source": {
  4736. "type": "git",
  4737. "url": "https://github.com/filp/whoops.git",
  4738. "reference": "cde50e6720a39fdacb240159d3eea6865d51fd96"
  4739. },
  4740. "dist": {
  4741. "type": "zip",
  4742. "url": "https://api.github.com/repos/filp/whoops/zipball/cde50e6720a39fdacb240159d3eea6865d51fd96",
  4743. "reference": "cde50e6720a39fdacb240159d3eea6865d51fd96",
  4744. "shasum": "",
  4745. "mirrors": [
  4746. {
  4747. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4748. "preferred": true
  4749. }
  4750. ]
  4751. },
  4752. "require": {
  4753. "php": "^5.5.9 || ^7.0",
  4754. "psr/log": "^1.0.1"
  4755. },
  4756. "require-dev": {
  4757. "mockery/mockery": "^0.9 || ^1.0",
  4758. "phpunit/phpunit": "^4.8.35 || ^5.7",
  4759. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0"
  4760. },
  4761. "suggest": {
  4762. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  4763. "whoops/soap": "Formats errors as SOAP responses"
  4764. },
  4765. "type": "library",
  4766. "extra": {
  4767. "branch-alias": {
  4768. "dev-master": "2.2-dev"
  4769. }
  4770. },
  4771. "autoload": {
  4772. "psr-4": {
  4773. "Whoops\\": "src/Whoops/"
  4774. }
  4775. },
  4776. "notification-url": "https://packagist.org/downloads/",
  4777. "license": [
  4778. "MIT"
  4779. ],
  4780. "authors": [
  4781. {
  4782. "name": "Filipe Dobreira",
  4783. "homepage": "https://github.com/filp",
  4784. "role": "Developer"
  4785. }
  4786. ],
  4787. "description": "php error handling for cool kids",
  4788. "homepage": "https://filp.github.io/whoops/",
  4789. "keywords": [
  4790. "error",
  4791. "exception",
  4792. "handling",
  4793. "library",
  4794. "throwable",
  4795. "whoops"
  4796. ],
  4797. "time": "2019-08-07T09:00:00+00:00"
  4798. },
  4799. {
  4800. "name": "fzaninotto/faker",
  4801. "version": "v1.8.0",
  4802. "source": {
  4803. "type": "git",
  4804. "url": "https://github.com/fzaninotto/Faker.git",
  4805. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de"
  4806. },
  4807. "dist": {
  4808. "type": "zip",
  4809. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/f72816b43e74063c8b10357394b6bba8cb1c10de",
  4810. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de",
  4811. "shasum": "",
  4812. "mirrors": [
  4813. {
  4814. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4815. "preferred": true
  4816. }
  4817. ]
  4818. },
  4819. "require": {
  4820. "php": "^5.3.3 || ^7.0"
  4821. },
  4822. "require-dev": {
  4823. "ext-intl": "*",
  4824. "phpunit/phpunit": "^4.8.35 || ^5.7",
  4825. "squizlabs/php_codesniffer": "^1.5"
  4826. },
  4827. "type": "library",
  4828. "extra": {
  4829. "branch-alias": {
  4830. "dev-master": "1.8-dev"
  4831. }
  4832. },
  4833. "autoload": {
  4834. "psr-4": {
  4835. "Faker\\": "src/Faker/"
  4836. }
  4837. },
  4838. "notification-url": "https://packagist.org/downloads/",
  4839. "license": [
  4840. "MIT"
  4841. ],
  4842. "authors": [
  4843. {
  4844. "name": "François Zaninotto"
  4845. }
  4846. ],
  4847. "description": "Faker is a PHP library that generates fake data for you.",
  4848. "keywords": [
  4849. "data",
  4850. "faker",
  4851. "fixtures"
  4852. ],
  4853. "time": "2018-07-12T10:23:15+00:00"
  4854. },
  4855. {
  4856. "name": "hamcrest/hamcrest-php",
  4857. "version": "v2.0.0",
  4858. "source": {
  4859. "type": "git",
  4860. "url": "https://github.com/hamcrest/hamcrest-php.git",
  4861. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad"
  4862. },
  4863. "dist": {
  4864. "type": "zip",
  4865. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/776503d3a8e85d4f9a1148614f95b7a608b046ad",
  4866. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad",
  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": "^5.3|^7.0"
  4877. },
  4878. "replace": {
  4879. "cordoval/hamcrest-php": "*",
  4880. "davedevelopment/hamcrest-php": "*",
  4881. "kodova/hamcrest-php": "*"
  4882. },
  4883. "require-dev": {
  4884. "phpunit/php-file-iterator": "1.3.3",
  4885. "phpunit/phpunit": "~4.0",
  4886. "satooshi/php-coveralls": "^1.0"
  4887. },
  4888. "type": "library",
  4889. "extra": {
  4890. "branch-alias": {
  4891. "dev-master": "2.0-dev"
  4892. }
  4893. },
  4894. "autoload": {
  4895. "classmap": [
  4896. "hamcrest"
  4897. ]
  4898. },
  4899. "notification-url": "https://packagist.org/downloads/",
  4900. "license": [
  4901. "BSD"
  4902. ],
  4903. "description": "This is the PHP port of Hamcrest Matchers",
  4904. "keywords": [
  4905. "test"
  4906. ],
  4907. "time": "2016-01-20T08:20:44+00:00"
  4908. },
  4909. {
  4910. "name": "maximebf/debugbar",
  4911. "version": "v1.15.1",
  4912. "source": {
  4913. "type": "git",
  4914. "url": "https://github.com/maximebf/php-debugbar.git",
  4915. "reference": "6c4277f6117e4864966c9cb58fb835cee8c74a1e"
  4916. },
  4917. "dist": {
  4918. "type": "zip",
  4919. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/6c4277f6117e4864966c9cb58fb835cee8c74a1e",
  4920. "reference": "6c4277f6117e4864966c9cb58fb835cee8c74a1e",
  4921. "shasum": "",
  4922. "mirrors": [
  4923. {
  4924. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4925. "preferred": true
  4926. }
  4927. ]
  4928. },
  4929. "require": {
  4930. "php": ">=5.6",
  4931. "psr/log": "^1.0",
  4932. "symfony/var-dumper": "^2.6|^3|^4"
  4933. },
  4934. "require-dev": {
  4935. "phpunit/phpunit": "^5"
  4936. },
  4937. "suggest": {
  4938. "kriswallsmith/assetic": "The best way to manage assets",
  4939. "monolog/monolog": "Log using Monolog",
  4940. "predis/predis": "Redis storage"
  4941. },
  4942. "type": "library",
  4943. "extra": {
  4944. "branch-alias": {
  4945. "dev-master": "1.15-dev"
  4946. }
  4947. },
  4948. "autoload": {
  4949. "psr-4": {
  4950. "DebugBar\\": "src/DebugBar/"
  4951. }
  4952. },
  4953. "notification-url": "https://packagist.org/downloads/",
  4954. "license": [
  4955. "MIT"
  4956. ],
  4957. "authors": [
  4958. {
  4959. "name": "Maxime Bouroumeau-Fuseau",
  4960. "email": "maxime.bouroumeau@gmail.com",
  4961. "homepage": "http://maximebf.com"
  4962. },
  4963. {
  4964. "name": "Barry vd. Heuvel",
  4965. "email": "barryvdh@gmail.com"
  4966. }
  4967. ],
  4968. "description": "Debug bar in the browser for php application",
  4969. "homepage": "https://github.com/maximebf/php-debugbar",
  4970. "keywords": [
  4971. "debug",
  4972. "debugbar"
  4973. ],
  4974. "time": "2019-09-24T14:55:42+00:00"
  4975. },
  4976. {
  4977. "name": "mockery/mockery",
  4978. "version": "1.2.4",
  4979. "source": {
  4980. "type": "git",
  4981. "url": "https://github.com/mockery/mockery.git",
  4982. "reference": "b3453f75fd23d9fd41685f2148f4abeacabc6405"
  4983. },
  4984. "dist": {
  4985. "type": "zip",
  4986. "url": "https://api.github.com/repos/mockery/mockery/zipball/b3453f75fd23d9fd41685f2148f4abeacabc6405",
  4987. "reference": "b3453f75fd23d9fd41685f2148f4abeacabc6405",
  4988. "shasum": "",
  4989. "mirrors": [
  4990. {
  4991. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4992. "preferred": true
  4993. }
  4994. ]
  4995. },
  4996. "require": {
  4997. "hamcrest/hamcrest-php": "~2.0",
  4998. "lib-pcre": ">=7.0",
  4999. "php": ">=5.6.0"
  5000. },
  5001. "require-dev": {
  5002. "phpunit/phpunit": "~5.7.10|~6.5|~7.0|~8.0"
  5003. },
  5004. "type": "library",
  5005. "extra": {
  5006. "branch-alias": {
  5007. "dev-master": "1.2.x-dev"
  5008. }
  5009. },
  5010. "autoload": {
  5011. "psr-0": {
  5012. "Mockery": "library/"
  5013. }
  5014. },
  5015. "notification-url": "https://packagist.org/downloads/",
  5016. "license": [
  5017. "BSD-3-Clause"
  5018. ],
  5019. "authors": [
  5020. {
  5021. "name": "Pádraic Brady",
  5022. "email": "padraic.brady@gmail.com",
  5023. "homepage": "http://blog.astrumfutura.com"
  5024. },
  5025. {
  5026. "name": "Dave Marshall",
  5027. "email": "dave.marshall@atstsolutions.co.uk",
  5028. "homepage": "http://davedevelopment.co.uk"
  5029. }
  5030. ],
  5031. "description": "Mockery is a simple yet flexible PHP mock object framework",
  5032. "homepage": "https://github.com/mockery/mockery",
  5033. "keywords": [
  5034. "BDD",
  5035. "TDD",
  5036. "library",
  5037. "mock",
  5038. "mock objects",
  5039. "mockery",
  5040. "stub",
  5041. "test",
  5042. "test double",
  5043. "testing"
  5044. ],
  5045. "time": "2019-09-30T08:30:27+00:00"
  5046. },
  5047. {
  5048. "name": "myclabs/deep-copy",
  5049. "version": "1.9.3",
  5050. "source": {
  5051. "type": "git",
  5052. "url": "https://github.com/myclabs/DeepCopy.git",
  5053. "reference": "007c053ae6f31bba39dfa19a7726f56e9763bbea"
  5054. },
  5055. "dist": {
  5056. "type": "zip",
  5057. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/007c053ae6f31bba39dfa19a7726f56e9763bbea",
  5058. "reference": "007c053ae6f31bba39dfa19a7726f56e9763bbea",
  5059. "shasum": "",
  5060. "mirrors": [
  5061. {
  5062. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5063. "preferred": true
  5064. }
  5065. ]
  5066. },
  5067. "require": {
  5068. "php": "^7.1"
  5069. },
  5070. "replace": {
  5071. "myclabs/deep-copy": "self.version"
  5072. },
  5073. "require-dev": {
  5074. "doctrine/collections": "^1.0",
  5075. "doctrine/common": "^2.6",
  5076. "phpunit/phpunit": "^7.1"
  5077. },
  5078. "type": "library",
  5079. "autoload": {
  5080. "psr-4": {
  5081. "DeepCopy\\": "src/DeepCopy/"
  5082. },
  5083. "files": [
  5084. "src/DeepCopy/deep_copy.php"
  5085. ]
  5086. },
  5087. "notification-url": "https://packagist.org/downloads/",
  5088. "license": [
  5089. "MIT"
  5090. ],
  5091. "description": "Create deep copies (clones) of your objects",
  5092. "keywords": [
  5093. "clone",
  5094. "copy",
  5095. "duplicate",
  5096. "object",
  5097. "object graph"
  5098. ],
  5099. "time": "2019-08-09T12:45:53+00:00"
  5100. },
  5101. {
  5102. "name": "nunomaduro/collision",
  5103. "version": "v3.0.1",
  5104. "source": {
  5105. "type": "git",
  5106. "url": "https://github.com/nunomaduro/collision.git",
  5107. "reference": "af42d339fe2742295a54f6fdd42aaa6f8c4aca68"
  5108. },
  5109. "dist": {
  5110. "type": "zip",
  5111. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/af42d339fe2742295a54f6fdd42aaa6f8c4aca68",
  5112. "reference": "af42d339fe2742295a54f6fdd42aaa6f8c4aca68",
  5113. "shasum": "",
  5114. "mirrors": [
  5115. {
  5116. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5117. "preferred": true
  5118. }
  5119. ]
  5120. },
  5121. "require": {
  5122. "filp/whoops": "^2.1.4",
  5123. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  5124. "php": "^7.1",
  5125. "symfony/console": "~2.8|~3.3|~4.0"
  5126. },
  5127. "require-dev": {
  5128. "laravel/framework": "5.8.*",
  5129. "nunomaduro/larastan": "^0.3.0",
  5130. "phpstan/phpstan": "^0.11",
  5131. "phpunit/phpunit": "~8.0"
  5132. },
  5133. "type": "library",
  5134. "extra": {
  5135. "laravel": {
  5136. "providers": [
  5137. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  5138. ]
  5139. }
  5140. },
  5141. "autoload": {
  5142. "psr-4": {
  5143. "NunoMaduro\\Collision\\": "src/"
  5144. }
  5145. },
  5146. "notification-url": "https://packagist.org/downloads/",
  5147. "license": [
  5148. "MIT"
  5149. ],
  5150. "authors": [
  5151. {
  5152. "name": "Nuno Maduro",
  5153. "email": "enunomaduro@gmail.com"
  5154. }
  5155. ],
  5156. "description": "Cli error handling for console/command-line PHP applications.",
  5157. "keywords": [
  5158. "artisan",
  5159. "cli",
  5160. "command-line",
  5161. "console",
  5162. "error",
  5163. "handling",
  5164. "laravel",
  5165. "laravel-zero",
  5166. "php",
  5167. "symfony"
  5168. ],
  5169. "time": "2019-03-07T21:35:13+00:00"
  5170. },
  5171. {
  5172. "name": "phar-io/manifest",
  5173. "version": "1.0.3",
  5174. "source": {
  5175. "type": "git",
  5176. "url": "https://github.com/phar-io/manifest.git",
  5177. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  5178. },
  5179. "dist": {
  5180. "type": "zip",
  5181. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  5182. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  5183. "shasum": "",
  5184. "mirrors": [
  5185. {
  5186. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5187. "preferred": true
  5188. }
  5189. ]
  5190. },
  5191. "require": {
  5192. "ext-dom": "*",
  5193. "ext-phar": "*",
  5194. "phar-io/version": "^2.0",
  5195. "php": "^5.6 || ^7.0"
  5196. },
  5197. "type": "library",
  5198. "extra": {
  5199. "branch-alias": {
  5200. "dev-master": "1.0.x-dev"
  5201. }
  5202. },
  5203. "autoload": {
  5204. "classmap": [
  5205. "src/"
  5206. ]
  5207. },
  5208. "notification-url": "https://packagist.org/downloads/",
  5209. "license": [
  5210. "BSD-3-Clause"
  5211. ],
  5212. "authors": [
  5213. {
  5214. "name": "Arne Blankerts",
  5215. "email": "arne@blankerts.de",
  5216. "role": "Developer"
  5217. },
  5218. {
  5219. "name": "Sebastian Heuer",
  5220. "email": "sebastian@phpeople.de",
  5221. "role": "Developer"
  5222. },
  5223. {
  5224. "name": "Sebastian Bergmann",
  5225. "email": "sebastian@phpunit.de",
  5226. "role": "Developer"
  5227. }
  5228. ],
  5229. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  5230. "time": "2018-07-08T19:23:20+00:00"
  5231. },
  5232. {
  5233. "name": "phar-io/version",
  5234. "version": "2.0.1",
  5235. "source": {
  5236. "type": "git",
  5237. "url": "https://github.com/phar-io/version.git",
  5238. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  5239. },
  5240. "dist": {
  5241. "type": "zip",
  5242. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  5243. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  5244. "shasum": "",
  5245. "mirrors": [
  5246. {
  5247. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5248. "preferred": true
  5249. }
  5250. ]
  5251. },
  5252. "require": {
  5253. "php": "^5.6 || ^7.0"
  5254. },
  5255. "type": "library",
  5256. "autoload": {
  5257. "classmap": [
  5258. "src/"
  5259. ]
  5260. },
  5261. "notification-url": "https://packagist.org/downloads/",
  5262. "license": [
  5263. "BSD-3-Clause"
  5264. ],
  5265. "authors": [
  5266. {
  5267. "name": "Arne Blankerts",
  5268. "email": "arne@blankerts.de",
  5269. "role": "Developer"
  5270. },
  5271. {
  5272. "name": "Sebastian Heuer",
  5273. "email": "sebastian@phpeople.de",
  5274. "role": "Developer"
  5275. },
  5276. {
  5277. "name": "Sebastian Bergmann",
  5278. "email": "sebastian@phpunit.de",
  5279. "role": "Developer"
  5280. }
  5281. ],
  5282. "description": "Library for handling version information and constraints",
  5283. "time": "2018-07-08T19:19:57+00:00"
  5284. },
  5285. {
  5286. "name": "phpdocumentor/reflection-common",
  5287. "version": "2.0.0",
  5288. "source": {
  5289. "type": "git",
  5290. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  5291. "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a"
  5292. },
  5293. "dist": {
  5294. "type": "zip",
  5295. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/63a995caa1ca9e5590304cd845c15ad6d482a62a",
  5296. "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a",
  5297. "shasum": "",
  5298. "mirrors": [
  5299. {
  5300. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5301. "preferred": true
  5302. }
  5303. ]
  5304. },
  5305. "require": {
  5306. "php": ">=7.1"
  5307. },
  5308. "require-dev": {
  5309. "phpunit/phpunit": "~6"
  5310. },
  5311. "type": "library",
  5312. "extra": {
  5313. "branch-alias": {
  5314. "dev-master": "2.x-dev"
  5315. }
  5316. },
  5317. "autoload": {
  5318. "psr-4": {
  5319. "phpDocumentor\\Reflection\\": "src/"
  5320. }
  5321. },
  5322. "notification-url": "https://packagist.org/downloads/",
  5323. "license": [
  5324. "MIT"
  5325. ],
  5326. "authors": [
  5327. {
  5328. "name": "Jaap van Otterdijk",
  5329. "email": "opensource@ijaap.nl"
  5330. }
  5331. ],
  5332. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  5333. "homepage": "http://www.phpdoc.org",
  5334. "keywords": [
  5335. "FQSEN",
  5336. "phpDocumentor",
  5337. "phpdoc",
  5338. "reflection",
  5339. "static analysis"
  5340. ],
  5341. "time": "2018-08-07T13:53:10+00:00"
  5342. },
  5343. {
  5344. "name": "phpdocumentor/reflection-docblock",
  5345. "version": "4.3.2",
  5346. "source": {
  5347. "type": "git",
  5348. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  5349. "reference": "b83ff7cfcfee7827e1e78b637a5904fe6a96698e"
  5350. },
  5351. "dist": {
  5352. "type": "zip",
  5353. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/b83ff7cfcfee7827e1e78b637a5904fe6a96698e",
  5354. "reference": "b83ff7cfcfee7827e1e78b637a5904fe6a96698e",
  5355. "shasum": "",
  5356. "mirrors": [
  5357. {
  5358. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5359. "preferred": true
  5360. }
  5361. ]
  5362. },
  5363. "require": {
  5364. "php": "^7.0",
  5365. "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0",
  5366. "phpdocumentor/type-resolver": "~0.4 || ^1.0.0",
  5367. "webmozart/assert": "^1.0"
  5368. },
  5369. "require-dev": {
  5370. "doctrine/instantiator": "^1.0.5",
  5371. "mockery/mockery": "^1.0",
  5372. "phpunit/phpunit": "^6.4"
  5373. },
  5374. "type": "library",
  5375. "extra": {
  5376. "branch-alias": {
  5377. "dev-master": "4.x-dev"
  5378. }
  5379. },
  5380. "autoload": {
  5381. "psr-4": {
  5382. "phpDocumentor\\Reflection\\": [
  5383. "src/"
  5384. ]
  5385. }
  5386. },
  5387. "notification-url": "https://packagist.org/downloads/",
  5388. "license": [
  5389. "MIT"
  5390. ],
  5391. "authors": [
  5392. {
  5393. "name": "Mike van Riel",
  5394. "email": "me@mikevanriel.com"
  5395. }
  5396. ],
  5397. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  5398. "time": "2019-09-12T14:27:41+00:00"
  5399. },
  5400. {
  5401. "name": "phpdocumentor/type-resolver",
  5402. "version": "1.0.1",
  5403. "source": {
  5404. "type": "git",
  5405. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  5406. "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9"
  5407. },
  5408. "dist": {
  5409. "type": "zip",
  5410. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/2e32a6d48972b2c1976ed5d8967145b6cec4a4a9",
  5411. "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9",
  5412. "shasum": "",
  5413. "mirrors": [
  5414. {
  5415. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5416. "preferred": true
  5417. }
  5418. ]
  5419. },
  5420. "require": {
  5421. "php": "^7.1",
  5422. "phpdocumentor/reflection-common": "^2.0"
  5423. },
  5424. "require-dev": {
  5425. "ext-tokenizer": "^7.1",
  5426. "mockery/mockery": "~1",
  5427. "phpunit/phpunit": "^7.0"
  5428. },
  5429. "type": "library",
  5430. "extra": {
  5431. "branch-alias": {
  5432. "dev-master": "1.x-dev"
  5433. }
  5434. },
  5435. "autoload": {
  5436. "psr-4": {
  5437. "phpDocumentor\\Reflection\\": "src"
  5438. }
  5439. },
  5440. "notification-url": "https://packagist.org/downloads/",
  5441. "license": [
  5442. "MIT"
  5443. ],
  5444. "authors": [
  5445. {
  5446. "name": "Mike van Riel",
  5447. "email": "me@mikevanriel.com"
  5448. }
  5449. ],
  5450. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  5451. "time": "2019-08-22T18:11:29+00:00"
  5452. },
  5453. {
  5454. "name": "phpspec/prophecy",
  5455. "version": "1.9.0",
  5456. "source": {
  5457. "type": "git",
  5458. "url": "https://github.com/phpspec/prophecy.git",
  5459. "reference": "f6811d96d97bdf400077a0cc100ae56aa32b9203"
  5460. },
  5461. "dist": {
  5462. "type": "zip",
  5463. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/f6811d96d97bdf400077a0cc100ae56aa32b9203",
  5464. "reference": "f6811d96d97bdf400077a0cc100ae56aa32b9203",
  5465. "shasum": "",
  5466. "mirrors": [
  5467. {
  5468. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5469. "preferred": true
  5470. }
  5471. ]
  5472. },
  5473. "require": {
  5474. "doctrine/instantiator": "^1.0.2",
  5475. "php": "^5.3|^7.0",
  5476. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  5477. "sebastian/comparator": "^1.1|^2.0|^3.0",
  5478. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  5479. },
  5480. "require-dev": {
  5481. "phpspec/phpspec": "^2.5|^3.2",
  5482. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  5483. },
  5484. "type": "library",
  5485. "extra": {
  5486. "branch-alias": {
  5487. "dev-master": "1.8.x-dev"
  5488. }
  5489. },
  5490. "autoload": {
  5491. "psr-4": {
  5492. "Prophecy\\": "src/Prophecy"
  5493. }
  5494. },
  5495. "notification-url": "https://packagist.org/downloads/",
  5496. "license": [
  5497. "MIT"
  5498. ],
  5499. "authors": [
  5500. {
  5501. "name": "Konstantin Kudryashov",
  5502. "email": "ever.zet@gmail.com",
  5503. "homepage": "http://everzet.com"
  5504. },
  5505. {
  5506. "name": "Marcello Duarte",
  5507. "email": "marcello.duarte@gmail.com"
  5508. }
  5509. ],
  5510. "description": "Highly opinionated mocking framework for PHP 5.3+",
  5511. "homepage": "https://github.com/phpspec/prophecy",
  5512. "keywords": [
  5513. "Double",
  5514. "Dummy",
  5515. "fake",
  5516. "mock",
  5517. "spy",
  5518. "stub"
  5519. ],
  5520. "time": "2019-10-03T11:07:50+00:00"
  5521. },
  5522. {
  5523. "name": "phpunit/php-code-coverage",
  5524. "version": "6.1.4",
  5525. "source": {
  5526. "type": "git",
  5527. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  5528. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d"
  5529. },
  5530. "dist": {
  5531. "type": "zip",
  5532. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  5533. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  5534. "shasum": "",
  5535. "mirrors": [
  5536. {
  5537. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5538. "preferred": true
  5539. }
  5540. ]
  5541. },
  5542. "require": {
  5543. "ext-dom": "*",
  5544. "ext-xmlwriter": "*",
  5545. "php": "^7.1",
  5546. "phpunit/php-file-iterator": "^2.0",
  5547. "phpunit/php-text-template": "^1.2.1",
  5548. "phpunit/php-token-stream": "^3.0",
  5549. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  5550. "sebastian/environment": "^3.1 || ^4.0",
  5551. "sebastian/version": "^2.0.1",
  5552. "theseer/tokenizer": "^1.1"
  5553. },
  5554. "require-dev": {
  5555. "phpunit/phpunit": "^7.0"
  5556. },
  5557. "suggest": {
  5558. "ext-xdebug": "^2.6.0"
  5559. },
  5560. "type": "library",
  5561. "extra": {
  5562. "branch-alias": {
  5563. "dev-master": "6.1-dev"
  5564. }
  5565. },
  5566. "autoload": {
  5567. "classmap": [
  5568. "src/"
  5569. ]
  5570. },
  5571. "notification-url": "https://packagist.org/downloads/",
  5572. "license": [
  5573. "BSD-3-Clause"
  5574. ],
  5575. "authors": [
  5576. {
  5577. "name": "Sebastian Bergmann",
  5578. "email": "sebastian@phpunit.de",
  5579. "role": "lead"
  5580. }
  5581. ],
  5582. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  5583. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  5584. "keywords": [
  5585. "coverage",
  5586. "testing",
  5587. "xunit"
  5588. ],
  5589. "time": "2018-10-31T16:06:48+00:00"
  5590. },
  5591. {
  5592. "name": "phpunit/php-file-iterator",
  5593. "version": "2.0.2",
  5594. "source": {
  5595. "type": "git",
  5596. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  5597. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  5598. },
  5599. "dist": {
  5600. "type": "zip",
  5601. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  5602. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  5603. "shasum": "",
  5604. "mirrors": [
  5605. {
  5606. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5607. "preferred": true
  5608. }
  5609. ]
  5610. },
  5611. "require": {
  5612. "php": "^7.1"
  5613. },
  5614. "require-dev": {
  5615. "phpunit/phpunit": "^7.1"
  5616. },
  5617. "type": "library",
  5618. "extra": {
  5619. "branch-alias": {
  5620. "dev-master": "2.0.x-dev"
  5621. }
  5622. },
  5623. "autoload": {
  5624. "classmap": [
  5625. "src/"
  5626. ]
  5627. },
  5628. "notification-url": "https://packagist.org/downloads/",
  5629. "license": [
  5630. "BSD-3-Clause"
  5631. ],
  5632. "authors": [
  5633. {
  5634. "name": "Sebastian Bergmann",
  5635. "email": "sebastian@phpunit.de",
  5636. "role": "lead"
  5637. }
  5638. ],
  5639. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  5640. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  5641. "keywords": [
  5642. "filesystem",
  5643. "iterator"
  5644. ],
  5645. "time": "2018-09-13T20:33:42+00:00"
  5646. },
  5647. {
  5648. "name": "phpunit/php-text-template",
  5649. "version": "1.2.1",
  5650. "source": {
  5651. "type": "git",
  5652. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  5653. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  5654. },
  5655. "dist": {
  5656. "type": "zip",
  5657. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  5658. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  5659. "shasum": "",
  5660. "mirrors": [
  5661. {
  5662. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5663. "preferred": true
  5664. }
  5665. ]
  5666. },
  5667. "require": {
  5668. "php": ">=5.3.3"
  5669. },
  5670. "type": "library",
  5671. "autoload": {
  5672. "classmap": [
  5673. "src/"
  5674. ]
  5675. },
  5676. "notification-url": "https://packagist.org/downloads/",
  5677. "license": [
  5678. "BSD-3-Clause"
  5679. ],
  5680. "authors": [
  5681. {
  5682. "name": "Sebastian Bergmann",
  5683. "email": "sebastian@phpunit.de",
  5684. "role": "lead"
  5685. }
  5686. ],
  5687. "description": "Simple template engine.",
  5688. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  5689. "keywords": [
  5690. "template"
  5691. ],
  5692. "time": "2015-06-21T13:50:34+00:00"
  5693. },
  5694. {
  5695. "name": "phpunit/php-timer",
  5696. "version": "2.1.2",
  5697. "source": {
  5698. "type": "git",
  5699. "url": "https://github.com/sebastianbergmann/php-timer.git",
  5700. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
  5701. },
  5702. "dist": {
  5703. "type": "zip",
  5704. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
  5705. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
  5706. "shasum": "",
  5707. "mirrors": [
  5708. {
  5709. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5710. "preferred": true
  5711. }
  5712. ]
  5713. },
  5714. "require": {
  5715. "php": "^7.1"
  5716. },
  5717. "require-dev": {
  5718. "phpunit/phpunit": "^7.0"
  5719. },
  5720. "type": "library",
  5721. "extra": {
  5722. "branch-alias": {
  5723. "dev-master": "2.1-dev"
  5724. }
  5725. },
  5726. "autoload": {
  5727. "classmap": [
  5728. "src/"
  5729. ]
  5730. },
  5731. "notification-url": "https://packagist.org/downloads/",
  5732. "license": [
  5733. "BSD-3-Clause"
  5734. ],
  5735. "authors": [
  5736. {
  5737. "name": "Sebastian Bergmann",
  5738. "email": "sebastian@phpunit.de",
  5739. "role": "lead"
  5740. }
  5741. ],
  5742. "description": "Utility class for timing",
  5743. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  5744. "keywords": [
  5745. "timer"
  5746. ],
  5747. "time": "2019-06-07T04:22:29+00:00"
  5748. },
  5749. {
  5750. "name": "phpunit/php-token-stream",
  5751. "version": "3.1.1",
  5752. "source": {
  5753. "type": "git",
  5754. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  5755. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
  5756. },
  5757. "dist": {
  5758. "type": "zip",
  5759. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
  5760. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
  5761. "shasum": "",
  5762. "mirrors": [
  5763. {
  5764. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5765. "preferred": true
  5766. }
  5767. ]
  5768. },
  5769. "require": {
  5770. "ext-tokenizer": "*",
  5771. "php": "^7.1"
  5772. },
  5773. "require-dev": {
  5774. "phpunit/phpunit": "^7.0"
  5775. },
  5776. "type": "library",
  5777. "extra": {
  5778. "branch-alias": {
  5779. "dev-master": "3.1-dev"
  5780. }
  5781. },
  5782. "autoload": {
  5783. "classmap": [
  5784. "src/"
  5785. ]
  5786. },
  5787. "notification-url": "https://packagist.org/downloads/",
  5788. "license": [
  5789. "BSD-3-Clause"
  5790. ],
  5791. "authors": [
  5792. {
  5793. "name": "Sebastian Bergmann",
  5794. "email": "sebastian@phpunit.de"
  5795. }
  5796. ],
  5797. "description": "Wrapper around PHP's tokenizer extension.",
  5798. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  5799. "keywords": [
  5800. "tokenizer"
  5801. ],
  5802. "time": "2019-09-17T06:23:10+00:00"
  5803. },
  5804. {
  5805. "name": "phpunit/phpunit",
  5806. "version": "7.5.16",
  5807. "source": {
  5808. "type": "git",
  5809. "url": "https://github.com/sebastianbergmann/phpunit.git",
  5810. "reference": "316afa6888d2562e04aeb67ea7f2017a0eb41661"
  5811. },
  5812. "dist": {
  5813. "type": "zip",
  5814. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/316afa6888d2562e04aeb67ea7f2017a0eb41661",
  5815. "reference": "316afa6888d2562e04aeb67ea7f2017a0eb41661",
  5816. "shasum": "",
  5817. "mirrors": [
  5818. {
  5819. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5820. "preferred": true
  5821. }
  5822. ]
  5823. },
  5824. "require": {
  5825. "doctrine/instantiator": "^1.1",
  5826. "ext-dom": "*",
  5827. "ext-json": "*",
  5828. "ext-libxml": "*",
  5829. "ext-mbstring": "*",
  5830. "ext-xml": "*",
  5831. "myclabs/deep-copy": "^1.7",
  5832. "phar-io/manifest": "^1.0.2",
  5833. "phar-io/version": "^2.0",
  5834. "php": "^7.1",
  5835. "phpspec/prophecy": "^1.7",
  5836. "phpunit/php-code-coverage": "^6.0.7",
  5837. "phpunit/php-file-iterator": "^2.0.1",
  5838. "phpunit/php-text-template": "^1.2.1",
  5839. "phpunit/php-timer": "^2.1",
  5840. "sebastian/comparator": "^3.0",
  5841. "sebastian/diff": "^3.0",
  5842. "sebastian/environment": "^4.0",
  5843. "sebastian/exporter": "^3.1",
  5844. "sebastian/global-state": "^2.0",
  5845. "sebastian/object-enumerator": "^3.0.3",
  5846. "sebastian/resource-operations": "^2.0",
  5847. "sebastian/version": "^2.0.1"
  5848. },
  5849. "conflict": {
  5850. "phpunit/phpunit-mock-objects": "*"
  5851. },
  5852. "require-dev": {
  5853. "ext-pdo": "*"
  5854. },
  5855. "suggest": {
  5856. "ext-soap": "*",
  5857. "ext-xdebug": "*",
  5858. "phpunit/php-invoker": "^2.0"
  5859. },
  5860. "bin": [
  5861. "phpunit"
  5862. ],
  5863. "type": "library",
  5864. "extra": {
  5865. "branch-alias": {
  5866. "dev-master": "7.5-dev"
  5867. }
  5868. },
  5869. "autoload": {
  5870. "classmap": [
  5871. "src/"
  5872. ]
  5873. },
  5874. "notification-url": "https://packagist.org/downloads/",
  5875. "license": [
  5876. "BSD-3-Clause"
  5877. ],
  5878. "authors": [
  5879. {
  5880. "name": "Sebastian Bergmann",
  5881. "email": "sebastian@phpunit.de",
  5882. "role": "lead"
  5883. }
  5884. ],
  5885. "description": "The PHP Unit Testing framework.",
  5886. "homepage": "https://phpunit.de/",
  5887. "keywords": [
  5888. "phpunit",
  5889. "testing",
  5890. "xunit"
  5891. ],
  5892. "time": "2019-09-14T09:08:39+00:00"
  5893. },
  5894. {
  5895. "name": "sebastian/code-unit-reverse-lookup",
  5896. "version": "1.0.1",
  5897. "source": {
  5898. "type": "git",
  5899. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  5900. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  5901. },
  5902. "dist": {
  5903. "type": "zip",
  5904. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  5905. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  5906. "shasum": "",
  5907. "mirrors": [
  5908. {
  5909. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5910. "preferred": true
  5911. }
  5912. ]
  5913. },
  5914. "require": {
  5915. "php": "^5.6 || ^7.0"
  5916. },
  5917. "require-dev": {
  5918. "phpunit/phpunit": "^5.7 || ^6.0"
  5919. },
  5920. "type": "library",
  5921. "extra": {
  5922. "branch-alias": {
  5923. "dev-master": "1.0.x-dev"
  5924. }
  5925. },
  5926. "autoload": {
  5927. "classmap": [
  5928. "src/"
  5929. ]
  5930. },
  5931. "notification-url": "https://packagist.org/downloads/",
  5932. "license": [
  5933. "BSD-3-Clause"
  5934. ],
  5935. "authors": [
  5936. {
  5937. "name": "Sebastian Bergmann",
  5938. "email": "sebastian@phpunit.de"
  5939. }
  5940. ],
  5941. "description": "Looks up which function or method a line of code belongs to",
  5942. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  5943. "time": "2017-03-04T06:30:41+00:00"
  5944. },
  5945. {
  5946. "name": "sebastian/comparator",
  5947. "version": "3.0.2",
  5948. "source": {
  5949. "type": "git",
  5950. "url": "https://github.com/sebastianbergmann/comparator.git",
  5951. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  5952. },
  5953. "dist": {
  5954. "type": "zip",
  5955. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  5956. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  5957. "shasum": "",
  5958. "mirrors": [
  5959. {
  5960. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5961. "preferred": true
  5962. }
  5963. ]
  5964. },
  5965. "require": {
  5966. "php": "^7.1",
  5967. "sebastian/diff": "^3.0",
  5968. "sebastian/exporter": "^3.1"
  5969. },
  5970. "require-dev": {
  5971. "phpunit/phpunit": "^7.1"
  5972. },
  5973. "type": "library",
  5974. "extra": {
  5975. "branch-alias": {
  5976. "dev-master": "3.0-dev"
  5977. }
  5978. },
  5979. "autoload": {
  5980. "classmap": [
  5981. "src/"
  5982. ]
  5983. },
  5984. "notification-url": "https://packagist.org/downloads/",
  5985. "license": [
  5986. "BSD-3-Clause"
  5987. ],
  5988. "authors": [
  5989. {
  5990. "name": "Jeff Welch",
  5991. "email": "whatthejeff@gmail.com"
  5992. },
  5993. {
  5994. "name": "Volker Dusch",
  5995. "email": "github@wallbash.com"
  5996. },
  5997. {
  5998. "name": "Bernhard Schussek",
  5999. "email": "bschussek@2bepublished.at"
  6000. },
  6001. {
  6002. "name": "Sebastian Bergmann",
  6003. "email": "sebastian@phpunit.de"
  6004. }
  6005. ],
  6006. "description": "Provides the functionality to compare PHP values for equality",
  6007. "homepage": "https://github.com/sebastianbergmann/comparator",
  6008. "keywords": [
  6009. "comparator",
  6010. "compare",
  6011. "equality"
  6012. ],
  6013. "time": "2018-07-12T15:12:46+00:00"
  6014. },
  6015. {
  6016. "name": "sebastian/diff",
  6017. "version": "3.0.2",
  6018. "source": {
  6019. "type": "git",
  6020. "url": "https://github.com/sebastianbergmann/diff.git",
  6021. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  6022. },
  6023. "dist": {
  6024. "type": "zip",
  6025. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  6026. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  6027. "shasum": "",
  6028. "mirrors": [
  6029. {
  6030. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6031. "preferred": true
  6032. }
  6033. ]
  6034. },
  6035. "require": {
  6036. "php": "^7.1"
  6037. },
  6038. "require-dev": {
  6039. "phpunit/phpunit": "^7.5 || ^8.0",
  6040. "symfony/process": "^2 || ^3.3 || ^4"
  6041. },
  6042. "type": "library",
  6043. "extra": {
  6044. "branch-alias": {
  6045. "dev-master": "3.0-dev"
  6046. }
  6047. },
  6048. "autoload": {
  6049. "classmap": [
  6050. "src/"
  6051. ]
  6052. },
  6053. "notification-url": "https://packagist.org/downloads/",
  6054. "license": [
  6055. "BSD-3-Clause"
  6056. ],
  6057. "authors": [
  6058. {
  6059. "name": "Kore Nordmann",
  6060. "email": "mail@kore-nordmann.de"
  6061. },
  6062. {
  6063. "name": "Sebastian Bergmann",
  6064. "email": "sebastian@phpunit.de"
  6065. }
  6066. ],
  6067. "description": "Diff implementation",
  6068. "homepage": "https://github.com/sebastianbergmann/diff",
  6069. "keywords": [
  6070. "diff",
  6071. "udiff",
  6072. "unidiff",
  6073. "unified diff"
  6074. ],
  6075. "time": "2019-02-04T06:01:07+00:00"
  6076. },
  6077. {
  6078. "name": "sebastian/environment",
  6079. "version": "4.2.2",
  6080. "source": {
  6081. "type": "git",
  6082. "url": "https://github.com/sebastianbergmann/environment.git",
  6083. "reference": "f2a2c8e1c97c11ace607a7a667d73d47c19fe404"
  6084. },
  6085. "dist": {
  6086. "type": "zip",
  6087. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/f2a2c8e1c97c11ace607a7a667d73d47c19fe404",
  6088. "reference": "f2a2c8e1c97c11ace607a7a667d73d47c19fe404",
  6089. "shasum": "",
  6090. "mirrors": [
  6091. {
  6092. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6093. "preferred": true
  6094. }
  6095. ]
  6096. },
  6097. "require": {
  6098. "php": "^7.1"
  6099. },
  6100. "require-dev": {
  6101. "phpunit/phpunit": "^7.5"
  6102. },
  6103. "suggest": {
  6104. "ext-posix": "*"
  6105. },
  6106. "type": "library",
  6107. "extra": {
  6108. "branch-alias": {
  6109. "dev-master": "4.2-dev"
  6110. }
  6111. },
  6112. "autoload": {
  6113. "classmap": [
  6114. "src/"
  6115. ]
  6116. },
  6117. "notification-url": "https://packagist.org/downloads/",
  6118. "license": [
  6119. "BSD-3-Clause"
  6120. ],
  6121. "authors": [
  6122. {
  6123. "name": "Sebastian Bergmann",
  6124. "email": "sebastian@phpunit.de"
  6125. }
  6126. ],
  6127. "description": "Provides functionality to handle HHVM/PHP environments",
  6128. "homepage": "http://www.github.com/sebastianbergmann/environment",
  6129. "keywords": [
  6130. "Xdebug",
  6131. "environment",
  6132. "hhvm"
  6133. ],
  6134. "time": "2019-05-05T09:05:15+00:00"
  6135. },
  6136. {
  6137. "name": "sebastian/exporter",
  6138. "version": "3.1.2",
  6139. "source": {
  6140. "type": "git",
  6141. "url": "https://github.com/sebastianbergmann/exporter.git",
  6142. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  6143. },
  6144. "dist": {
  6145. "type": "zip",
  6146. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  6147. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  6148. "shasum": "",
  6149. "mirrors": [
  6150. {
  6151. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6152. "preferred": true
  6153. }
  6154. ]
  6155. },
  6156. "require": {
  6157. "php": "^7.0",
  6158. "sebastian/recursion-context": "^3.0"
  6159. },
  6160. "require-dev": {
  6161. "ext-mbstring": "*",
  6162. "phpunit/phpunit": "^6.0"
  6163. },
  6164. "type": "library",
  6165. "extra": {
  6166. "branch-alias": {
  6167. "dev-master": "3.1.x-dev"
  6168. }
  6169. },
  6170. "autoload": {
  6171. "classmap": [
  6172. "src/"
  6173. ]
  6174. },
  6175. "notification-url": "https://packagist.org/downloads/",
  6176. "license": [
  6177. "BSD-3-Clause"
  6178. ],
  6179. "authors": [
  6180. {
  6181. "name": "Sebastian Bergmann",
  6182. "email": "sebastian@phpunit.de"
  6183. },
  6184. {
  6185. "name": "Jeff Welch",
  6186. "email": "whatthejeff@gmail.com"
  6187. },
  6188. {
  6189. "name": "Volker Dusch",
  6190. "email": "github@wallbash.com"
  6191. },
  6192. {
  6193. "name": "Adam Harvey",
  6194. "email": "aharvey@php.net"
  6195. },
  6196. {
  6197. "name": "Bernhard Schussek",
  6198. "email": "bschussek@gmail.com"
  6199. }
  6200. ],
  6201. "description": "Provides the functionality to export PHP variables for visualization",
  6202. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  6203. "keywords": [
  6204. "export",
  6205. "exporter"
  6206. ],
  6207. "time": "2019-09-14T09:02:43+00:00"
  6208. },
  6209. {
  6210. "name": "sebastian/global-state",
  6211. "version": "2.0.0",
  6212. "source": {
  6213. "type": "git",
  6214. "url": "https://github.com/sebastianbergmann/global-state.git",
  6215. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  6216. },
  6217. "dist": {
  6218. "type": "zip",
  6219. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  6220. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  6221. "shasum": "",
  6222. "mirrors": [
  6223. {
  6224. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6225. "preferred": true
  6226. }
  6227. ]
  6228. },
  6229. "require": {
  6230. "php": "^7.0"
  6231. },
  6232. "require-dev": {
  6233. "phpunit/phpunit": "^6.0"
  6234. },
  6235. "suggest": {
  6236. "ext-uopz": "*"
  6237. },
  6238. "type": "library",
  6239. "extra": {
  6240. "branch-alias": {
  6241. "dev-master": "2.0-dev"
  6242. }
  6243. },
  6244. "autoload": {
  6245. "classmap": [
  6246. "src/"
  6247. ]
  6248. },
  6249. "notification-url": "https://packagist.org/downloads/",
  6250. "license": [
  6251. "BSD-3-Clause"
  6252. ],
  6253. "authors": [
  6254. {
  6255. "name": "Sebastian Bergmann",
  6256. "email": "sebastian@phpunit.de"
  6257. }
  6258. ],
  6259. "description": "Snapshotting of global state",
  6260. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  6261. "keywords": [
  6262. "global state"
  6263. ],
  6264. "time": "2017-04-27T15:39:26+00:00"
  6265. },
  6266. {
  6267. "name": "sebastian/object-enumerator",
  6268. "version": "3.0.3",
  6269. "source": {
  6270. "type": "git",
  6271. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  6272. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  6273. },
  6274. "dist": {
  6275. "type": "zip",
  6276. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  6277. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  6278. "shasum": "",
  6279. "mirrors": [
  6280. {
  6281. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6282. "preferred": true
  6283. }
  6284. ]
  6285. },
  6286. "require": {
  6287. "php": "^7.0",
  6288. "sebastian/object-reflector": "^1.1.1",
  6289. "sebastian/recursion-context": "^3.0"
  6290. },
  6291. "require-dev": {
  6292. "phpunit/phpunit": "^6.0"
  6293. },
  6294. "type": "library",
  6295. "extra": {
  6296. "branch-alias": {
  6297. "dev-master": "3.0.x-dev"
  6298. }
  6299. },
  6300. "autoload": {
  6301. "classmap": [
  6302. "src/"
  6303. ]
  6304. },
  6305. "notification-url": "https://packagist.org/downloads/",
  6306. "license": [
  6307. "BSD-3-Clause"
  6308. ],
  6309. "authors": [
  6310. {
  6311. "name": "Sebastian Bergmann",
  6312. "email": "sebastian@phpunit.de"
  6313. }
  6314. ],
  6315. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  6316. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  6317. "time": "2017-08-03T12:35:26+00:00"
  6318. },
  6319. {
  6320. "name": "sebastian/object-reflector",
  6321. "version": "1.1.1",
  6322. "source": {
  6323. "type": "git",
  6324. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  6325. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  6326. },
  6327. "dist": {
  6328. "type": "zip",
  6329. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  6330. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  6331. "shasum": "",
  6332. "mirrors": [
  6333. {
  6334. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6335. "preferred": true
  6336. }
  6337. ]
  6338. },
  6339. "require": {
  6340. "php": "^7.0"
  6341. },
  6342. "require-dev": {
  6343. "phpunit/phpunit": "^6.0"
  6344. },
  6345. "type": "library",
  6346. "extra": {
  6347. "branch-alias": {
  6348. "dev-master": "1.1-dev"
  6349. }
  6350. },
  6351. "autoload": {
  6352. "classmap": [
  6353. "src/"
  6354. ]
  6355. },
  6356. "notification-url": "https://packagist.org/downloads/",
  6357. "license": [
  6358. "BSD-3-Clause"
  6359. ],
  6360. "authors": [
  6361. {
  6362. "name": "Sebastian Bergmann",
  6363. "email": "sebastian@phpunit.de"
  6364. }
  6365. ],
  6366. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  6367. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  6368. "time": "2017-03-29T09:07:27+00:00"
  6369. },
  6370. {
  6371. "name": "sebastian/recursion-context",
  6372. "version": "3.0.0",
  6373. "source": {
  6374. "type": "git",
  6375. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  6376. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  6377. },
  6378. "dist": {
  6379. "type": "zip",
  6380. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  6381. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  6382. "shasum": "",
  6383. "mirrors": [
  6384. {
  6385. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6386. "preferred": true
  6387. }
  6388. ]
  6389. },
  6390. "require": {
  6391. "php": "^7.0"
  6392. },
  6393. "require-dev": {
  6394. "phpunit/phpunit": "^6.0"
  6395. },
  6396. "type": "library",
  6397. "extra": {
  6398. "branch-alias": {
  6399. "dev-master": "3.0.x-dev"
  6400. }
  6401. },
  6402. "autoload": {
  6403. "classmap": [
  6404. "src/"
  6405. ]
  6406. },
  6407. "notification-url": "https://packagist.org/downloads/",
  6408. "license": [
  6409. "BSD-3-Clause"
  6410. ],
  6411. "authors": [
  6412. {
  6413. "name": "Jeff Welch",
  6414. "email": "whatthejeff@gmail.com"
  6415. },
  6416. {
  6417. "name": "Sebastian Bergmann",
  6418. "email": "sebastian@phpunit.de"
  6419. },
  6420. {
  6421. "name": "Adam Harvey",
  6422. "email": "aharvey@php.net"
  6423. }
  6424. ],
  6425. "description": "Provides functionality to recursively process PHP variables",
  6426. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  6427. "time": "2017-03-03T06:23:57+00:00"
  6428. },
  6429. {
  6430. "name": "sebastian/resource-operations",
  6431. "version": "2.0.1",
  6432. "source": {
  6433. "type": "git",
  6434. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  6435. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  6436. },
  6437. "dist": {
  6438. "type": "zip",
  6439. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  6440. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  6441. "shasum": "",
  6442. "mirrors": [
  6443. {
  6444. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6445. "preferred": true
  6446. }
  6447. ]
  6448. },
  6449. "require": {
  6450. "php": "^7.1"
  6451. },
  6452. "type": "library",
  6453. "extra": {
  6454. "branch-alias": {
  6455. "dev-master": "2.0-dev"
  6456. }
  6457. },
  6458. "autoload": {
  6459. "classmap": [
  6460. "src/"
  6461. ]
  6462. },
  6463. "notification-url": "https://packagist.org/downloads/",
  6464. "license": [
  6465. "BSD-3-Clause"
  6466. ],
  6467. "authors": [
  6468. {
  6469. "name": "Sebastian Bergmann",
  6470. "email": "sebastian@phpunit.de"
  6471. }
  6472. ],
  6473. "description": "Provides a list of PHP built-in functions that operate on resources",
  6474. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  6475. "time": "2018-10-04T04:07:39+00:00"
  6476. },
  6477. {
  6478. "name": "sebastian/version",
  6479. "version": "2.0.1",
  6480. "source": {
  6481. "type": "git",
  6482. "url": "https://github.com/sebastianbergmann/version.git",
  6483. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  6484. },
  6485. "dist": {
  6486. "type": "zip",
  6487. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  6488. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  6489. "shasum": "",
  6490. "mirrors": [
  6491. {
  6492. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6493. "preferred": true
  6494. }
  6495. ]
  6496. },
  6497. "require": {
  6498. "php": ">=5.6"
  6499. },
  6500. "type": "library",
  6501. "extra": {
  6502. "branch-alias": {
  6503. "dev-master": "2.0.x-dev"
  6504. }
  6505. },
  6506. "autoload": {
  6507. "classmap": [
  6508. "src/"
  6509. ]
  6510. },
  6511. "notification-url": "https://packagist.org/downloads/",
  6512. "license": [
  6513. "BSD-3-Clause"
  6514. ],
  6515. "authors": [
  6516. {
  6517. "name": "Sebastian Bergmann",
  6518. "email": "sebastian@phpunit.de",
  6519. "role": "lead"
  6520. }
  6521. ],
  6522. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  6523. "homepage": "https://github.com/sebastianbergmann/version",
  6524. "time": "2016-10-03T07:35:21+00:00"
  6525. },
  6526. {
  6527. "name": "theseer/tokenizer",
  6528. "version": "1.1.3",
  6529. "source": {
  6530. "type": "git",
  6531. "url": "https://github.com/theseer/tokenizer.git",
  6532. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9"
  6533. },
  6534. "dist": {
  6535. "type": "zip",
  6536. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  6537. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  6538. "shasum": "",
  6539. "mirrors": [
  6540. {
  6541. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6542. "preferred": true
  6543. }
  6544. ]
  6545. },
  6546. "require": {
  6547. "ext-dom": "*",
  6548. "ext-tokenizer": "*",
  6549. "ext-xmlwriter": "*",
  6550. "php": "^7.0"
  6551. },
  6552. "type": "library",
  6553. "autoload": {
  6554. "classmap": [
  6555. "src/"
  6556. ]
  6557. },
  6558. "notification-url": "https://packagist.org/downloads/",
  6559. "license": [
  6560. "BSD-3-Clause"
  6561. ],
  6562. "authors": [
  6563. {
  6564. "name": "Arne Blankerts",
  6565. "email": "arne@blankerts.de",
  6566. "role": "Developer"
  6567. }
  6568. ],
  6569. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  6570. "time": "2019-06-13T22:48:21+00:00"
  6571. },
  6572. {
  6573. "name": "webmozart/assert",
  6574. "version": "1.5.0",
  6575. "source": {
  6576. "type": "git",
  6577. "url": "https://github.com/webmozart/assert.git",
  6578. "reference": "88e6d84706d09a236046d686bbea96f07b3a34f4"
  6579. },
  6580. "dist": {
  6581. "type": "zip",
  6582. "url": "https://api.github.com/repos/webmozart/assert/zipball/88e6d84706d09a236046d686bbea96f07b3a34f4",
  6583. "reference": "88e6d84706d09a236046d686bbea96f07b3a34f4",
  6584. "shasum": "",
  6585. "mirrors": [
  6586. {
  6587. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6588. "preferred": true
  6589. }
  6590. ]
  6591. },
  6592. "require": {
  6593. "php": "^5.3.3 || ^7.0",
  6594. "symfony/polyfill-ctype": "^1.8"
  6595. },
  6596. "require-dev": {
  6597. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  6598. },
  6599. "type": "library",
  6600. "extra": {
  6601. "branch-alias": {
  6602. "dev-master": "1.3-dev"
  6603. }
  6604. },
  6605. "autoload": {
  6606. "psr-4": {
  6607. "Webmozart\\Assert\\": "src/"
  6608. }
  6609. },
  6610. "notification-url": "https://packagist.org/downloads/",
  6611. "license": [
  6612. "MIT"
  6613. ],
  6614. "authors": [
  6615. {
  6616. "name": "Bernhard Schussek",
  6617. "email": "bschussek@gmail.com"
  6618. }
  6619. ],
  6620. "description": "Assertions to validate method input/output with nice error messages.",
  6621. "keywords": [
  6622. "assert",
  6623. "check",
  6624. "validate"
  6625. ],
  6626. "time": "2019-08-24T08:43:50+00:00"
  6627. }
  6628. ],
  6629. "aliases": [],
  6630. "minimum-stability": "dev",
  6631. "stability-flags": [],
  6632. "prefer-stable": true,
  6633. "prefer-lowest": false,
  6634. "platform": {
  6635. "php": "^7.1.3",
  6636. "ext-json": "*",
  6637. "ext-mbstring": "*",
  6638. "ext-openssl": "*"
  6639. },
  6640. "platform-dev": []
  6641. }