composer.lock 288 KB

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