composer.lock 246 KB

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