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