composer.lock 238 KB

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