composer.lock 277 KB

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