composer.lock 250 KB

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